View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/06/17 13:23:08
6    */
7   package org.asyrinx.joey.om;
8   
9   /***
10   * @author akima
11   */
12  public interface EntityInitializer {
13  
14  	public void initialize(Object entity);
15  
16  	public static final EntityInitializer NULL = new EntityInitializer() {
17  		public void initialize(Object entity) {
18  		}
19  	};
20  
21  }