To edit or add content to this Wiki, you can simply create a new account at http://wocommunity.org/account.
// 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} { }