Schema Entities
<element>
This entity corresponds to Java Beans. The name of this entity become the name of the Java bean (So it will be nice if java naming convention is followed). It can have the following child entities
- element
- attribute
- comment
<attribute>
This entity corresponds to the properties of Java Beans. It can only have comment child entity.
<comment>
This entity corresponds to general comments (javadoc) and is used in the generated source.
See configutron.dtd file located in CONFIGUTRON_HOME/resources folder.
Attribute reference
Element | Attribute | Attribute description | Required |
config-schema | name | The name of the schema. This attribute is required because it's value is used in the name of source package declaration. | Yes |
element | name | Name of the element | Yes |
type | The type of value (character data) contained by this element. Default type is java.lang.String | No | |
multiple | It is needed if this element has 1-many relation (aggregation) with its parent element. | No | |
hash | It is needed if the element has to be hashed inside it's parent and is to be accessed using a key | No | |
key | Needed if the element is to be hashed inside its parent. It's value is the attribute name of this element that is to be used as a key to access this element. The type of key will be the type of it's attribute | No | |
comment | N/A | N/A | N/A |
attribute | name | The name of the attribute | Yes |
type | The type of the value this attribute will contain. Default type is java.lang.String | No |