Subversion Repositories SmartDukaan

Rev

Rev 49 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 49 Rev 51
Line 2... Line 2...
2
 * 
2
 * 
3
 */
3
 */
4
package in.shop2020.metamodel.util;
4
package in.shop2020.metamodel.util;
5
 
5
 
6
/**
6
/**
7
 * Parent class of definition objects which can be reused to create new 
7
 * Parent class of those definition objects which can be reused to create new 
8
 * structures. These can be identified with unique number.
8
 * structures. These can be identified with unique number.
9
 * 
9
 * 
10
 * @author naveen
10
 * @author naveen
11
 *
11
 *
12
 */
12
 */
Line 28... Line 28...
28
	public ReusableMetaModelComponent(long newID) {
28
	public ReusableMetaModelComponent(long newID) {
29
		this.id = newID;
29
		this.id = newID;
30
	}
30
	}
31
	/**
31
	/**
32
	 * 
32
	 * 
33
	 * @return id
33
	 * @return id Unique identifier
34
	 */
34
	 */
35
	public long getID() {
35
	public long getID() {
36
		return this.id;
36
		return this.id;
37
	}
37
	}
38
}
38
}