| Java API Reference | Class Hierarchy | All Classes | All Fields and Methods |
com.ibm.xtools.patterns.framework
+-- Object +-- PatternElementDescriptor
public Class PatternElementDescriptor
extends Object
Represents the pattern descriptor class that contains the data that describing pattern entities, such as pattern definitions and pattern parameters.
Name, localized name, description and type are managed by this abstraction.
| Constructor summary |
|---|
| PatternElementDescriptor() Constructs a void or null object for a pattern element descriptor. |
| PatternElementDescriptor(String name, String description, PatternMetatype type) Constructs a pattern element descriptor with the name, description and type as given. |
| PatternElementDescriptor(String name, String localizedName, String description, PatternMetatype type) Constructs a pattern element descriptor with the name, localized name, description and type as given. |
Constructor detail
public PatternElementDescriptor()
Constructs a void or null object for a pattern element descriptor.
public PatternElementDescriptor(String name, String description, PatternMetatype type)
Constructs a pattern element descriptor with the name, description and type as given.
Parameters:
| name | - The name of the pattern element. |
| description | - The description of the pattern element. |
| type | - The type associated with this pattern element. |
public PatternElementDescriptor(String name, String localizedName, String description, PatternMetatype type)
Constructs a pattern element descriptor with the name, localized name, description and type as given.
Parameters:
| name | - The name of the pattern element. |
| localizedName | - The localized name of the pattern element. |
| description | - The description of the pattern element. |
| type | - The type associated with this pattern element. |