Hyades Datapool Specification

org.eclipse.hyades.execution.datapool
Interface INamedElement

All Known Subinterfaces:
IDatapool, IDatapoolEquivalenceClass, IDatapoolVariable

public interface INamedElement

This class defines the base interface for all named elements. Each named element has a standard set of associated properties. Any undefined property will return null for the property value.

See Also:
IDatapool, IDatapoolEquivalenceClass, IDatapoolVariable

Method Summary
 java.lang.String getDescription()
          Accessor for the description associated with the element.
 java.lang.String getId()
          Accessor method for the GUID for the element.
 java.lang.String getName()
          Accessor method for the name of the element.
 void setDescription(java.lang.String description)
          Specify the description for the associated element.
 void setId(java.lang.String id)
          Specify the GUID for the associated element.
 void setName(java.lang.String name)
          Specify the name for the associated element.
 

Method Detail

getId

public java.lang.String getId()
Accessor method for the GUID for the element. null is returned if no GUID has been defined for the element.

See Also:
setId(String)

setId

public void setId(java.lang.String id)
Specify the GUID for the associated element.

See Also:
getId()

getName

public java.lang.String getName()
Accessor method for the name of the element. null is returned if no name has been defined for the element.

See Also:
setName(String)

setName

public void setName(java.lang.String name)
Specify the name for the associated element.

See Also:
getName()

getDescription

public java.lang.String getDescription()
Accessor for the description associated with the element. null is returned if no description has been associated with the element.

See Also:
setDescription(String)

setDescription

public void setDescription(java.lang.String description)
Specify the description for the associated element.

See Also:
getDescription()


Hyades DPL