Method Summary |
|
public void | actionPerformed(ActionEvent e) |
public void | addRelation(Relation relation) Inserts a relation in the correct position (relations are always positioned first
amongst an Entity's children, because it looks nicer!). |
public int | countPrimaryKeyFields() Count the number of primary key fields. |
public Entity | getAssocationEntity(String relationName) |
public TemplateString | getDescription() |
public TemplateString | getDisplayName() Display name is used to determine which field to render in drop downl lists. |
public List | getEntitiesAssocationRelations() Get a list of all assocation Relations to this entity. |
public List | getEntitiesRelations() Get a list of all Relations to this entity that are not assocation relations. |
public List | getFields() |
public String | getFirstPrimaryKeyFieldName() |
public Session | getFirstSession() Get a session that contains this Entity. |
public List | getFkFields() |
public boolean | getHasRelations() |
public String | getIsAssociationEntity() |
public String | getIsComposite() |
public TemplateString | getLocalTableName() Gets the name of the table represented by this Entity. |
public TemplateString | getName() |
public List | getNonFkFields() |
public List | getNonPkFields() |
public List | getNonPkRelationFields() Gets the fields that are neither primary keys, nor a foreign key involved in a container-managed relation. |
public List | getNonRelationFields() |
public JPanel | getPanel() |
public List | getPkFields() |
public Field | getPrimaryKey() |
public String | getPrimaryKeyClass() |
public TemplateString | getPrimaryKeyName() |
public TemplateString | getPrimaryKeyType() |
public String | getRefName() |
public List | getRelatedEntities() |
public List | getRelationFieldNames() Gets the set of field names within this entity, which are used as relations to other CMR-related entity beans. |
public List | getRelations() |
public TemplateString | getRootPackage() |
public String | getRootPath() |
public String | getTableName() |
public void | getXML(Element el) |
public boolean | isCompositeKey() Iterates over all the table columns and determines whether the table has a single key or a composite key. |
public boolean | isSequenceEntity() Check if one of the fields needs a sequence. |
public void | notifyRelationsThatConstructionIsFinished() While an entity is being created, its constituent relations have to wait for the entity to finish being
constructed before they can finish initialising themselves. |
public void | notifyRelationsThatFieldNameChanged(String oldName, String text) When a field name is changed, call this to tell all relations to update their lists. |
public void | setDescription(String text) |
public void | setDisplayName(String text) |
public void | setIsAssociationEntity(String associationEntity) |
public void | setIsComposite(String composite) |
public void | setName(String text) |
public void | setPKeyType(String pKeyType) |
public void | setPrimaryKey(Field field) Called by a field when it has been selected as primary key in the GUI. |
public void | setRefName(String text) |
public void | setRootPackage(String text) |
public void | setTableName(String table) |
public String | toString() |
public void | unsetPrimaryKey(Field field) Called by a field when it has been de-selected as primary key in the GUI. |