Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 shop2020 1
/**
2
 * 
3
 */
4
package in.shop2020.metamodel.util;
5
 
6
import java.io.Serializable;
7
 
8
/**
49 naveen 9
 * Parent class of all meta-model classes. They need to be Serializable to 
10
 * support storage and retrieval.
10 shop2020 11
 * 
12
 * @author naveen
13
 *
14
 */
15
public abstract class MetaModelComponent implements Serializable {
16
 
17
	/**
18
	 * 
19
	 */
20
	private static final long serialVersionUID = 1L;
21
}