org.jfree.xml.generator.model
public class ClassDescription extends Object
Constructor Summary | |
---|---|
ClassDescription(Class objectClass)
Creates a new class description.
|
Method Summary | |
---|---|
Comments | getComments()
Returns the comments for the class description.
|
TypeInfo[] | getConstructorDescription()
Returns the constructor descriptions.
|
String | getDescription()
Returns the description.
|
String | getName()
Returns the class name.
|
Class | getObjectClass()
Returns the object's class.
|
PropertyInfo[] | getProperties()
Returns the info about properties.
|
PropertyInfo | getProperty(String name)
Returns a property.
|
String | getRegisterKey()
Returns the register key.
|
String | getSource()
Returns the source for the class description.
|
Class | getSuperClass()
Returns the super class.
|
boolean | isPreserve()
Returns the preserve flag.
|
boolean | isUndefined()
Returns true if the description is undefined.
|
void | setComments(Comments comments)
Sets the comments for the class description.
|
void | setConstructorDescription(TypeInfo[] constructorDescription)
Sets the constructor description.
|
void | setDescription(String description)
Sets the description for the object.
|
void | setPreserve(boolean preserve)
Sets the preserve flag.
|
void | setProperties(PropertyInfo[] properties)
Sets the info about the class properties.
|
void | setRegisterKey(String registerKey)
Sets the register key.
|
void | setSource(String source)
Sets the source for the class description.
|
void | setSuperClass(Class superClass)
Sets the super class.
|
Parameters: objectClass the class.
Returns: The comments.
Returns: the constructor descriptions.
Returns: the description.
Returns: the class name.
Returns: the object's class.
Returns: the info about properties.
Parameters: name the property name.
Returns: a property.
Returns: the register key.
Returns: The source.
Returns: the super class.
Returns: a boolean.
true
if the description is undefined.
Returns: a boolean.
Parameters: comments the comments.
Parameters: constructorDescription the constructor description.
Parameters: description the description.
Parameters: preserve the new value of the flag.
Parameters: properties the properties.
Parameters: registerKey the register key.
Parameters: source the source.
Parameters: superClass the super class.