JBND Client-Side Entity.java Template

Version 1.1 by David Avendasora on 2008/03/06 15:31


// All custom logic should be stored in this class, so it is not affected by changes in the model,
// Which will change the abstract superclass instead

#if ($entity.superclassPackageName)
package $entity.superclassPackageName;

#end
import com.webobjects.foundation.*;
import com.webobjects.eocontrol.*;
import java.math.BigDecimal;
import java.util.*;

/**
* Concrete Enterprise object class, representing a "$entity.name" record, subclasses the abstract
* generated class that defines getter and setter methods. All custom logic should be
* stored in this class, so it is separated from getter / setter methods.
* Generated with EOGenerator.
*/
public class ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithoutPackage} {

}