Hyades Datapool Specification

org.eclipse.hyades.edit.datapool
Interface INamedElement

All Superinterfaces:
INamedElement
All Known Subinterfaces:
IDatapool, IDatapoolEquivalenceClass, IDatapoolVariable

public interface INamedElement
extends 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
 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.
 
Methods inherited from interface org.eclipse.hyades.execution.runtime.datapool.INamedElement
getDescription, getId, getName
 

Method Detail

setId

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

See Also:
INamedElement.getId()

setName

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

See Also:
INamedElement.getName()

setDescription

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

See Also:
INamedElement.getDescription()


Hyades DPL