edu.ksu.cis.cadena.core.specification.property
Interface PropertyDeclaration

All Superinterfaces:
CalmObject
All Known Subinterfaces:
ExternalPropertyDeclaration, InternalPropertyDeclaration, OpenPropertyDeclaration

public interface PropertyDeclaration
extends CalmObject

A representation of the model object 'Declaration'.

The following features are supported:

See Also:
PropertyPackage.getPropertyDeclaration()

Method Summary
 Property getDefaultValue()
          Returns the value of the 'Default Value' reference.
 PropertyKind getKind()
          Returns the value of the 'Kind' attribute.
 java.lang.String getName()
          Returns the value of the 'Name' attribute.
 PropertyType getType()
          Returns the value of the 'Type' reference.
 void setDefaultValue(Property value)
          Sets the value of the 'Default Value' reference.
 void setKind(PropertyKind value)
          Sets the value of the 'Kind' attribute.
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute.
 
Methods inherited from interface edu.ksu.cis.cadena.core.specification.base.CalmObject
addBackReference, getBackReferences, getDeleted, getTrashCan, getUuid, removeBackReference
 

Method Detail

getName

java.lang.String getName()
Returns the value of the 'Name' attribute.

If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Name' attribute.
See Also:
setName(String), PropertyPackage.getPropertyDeclaration_Name()

setName

void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()

getKind

PropertyKind getKind()
Returns the value of the 'Kind' attribute. The literals are from the enumeration PropertyKind.

If the meaning of the 'Kind' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Kind' attribute.
See Also:
PropertyKind, setKind(PropertyKind), PropertyPackage.getPropertyDeclaration_Kind()

setKind

void setKind(PropertyKind value)
Sets the value of the 'Kind' attribute.

Parameters:
value - the new value of the 'Kind' attribute.
See Also:
PropertyKind, getKind()

getType

PropertyType getType()
Returns the value of the 'Type' reference.

If the meaning of the 'Type' containment reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Type' reference.
See Also:
PropertyPackage.getPropertyDeclaration_Type()

getDefaultValue

Property getDefaultValue()
Returns the value of the 'Default Value' reference.

If the meaning of the 'Default Value' containment reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Default Value' reference.
See Also:
setDefaultValue(Property), PropertyPackage.getPropertyDeclaration_DefaultValue()

setDefaultValue

void setDefaultValue(Property value)
Sets the value of the 'Default Value' reference.

Parameters:
value - the new value of the 'Default Value' reference.
See Also:
getDefaultValue()