public class GeometryEditorBuilder extends java.lang.Object implements ItemBuilder
This class realizes the ItemBuilder interface to provide instances of the GeometryEditor to ICE. Calling GeometryEditorBuilder.build() will return an instance of the GeometryEditor that is fully-initialized and ready for use.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
name
The name of the Geometry Editor.
|
static ItemType |
type
The Item type of the Geometry Editor.
|
item
Constructor and Description |
---|
GeometryEditorBuilder() |
Modifier and Type | Method and Description |
---|---|
Item |
build(org.eclipse.core.resources.IProject projectSpace)
(non-Javadoc)
|
java.lang.String |
getItemName()
(non-Javadoc)
|
ItemType |
getItemType()
(non-Javadoc)
|
public static final java.lang.String name
The name of the Geometry Editor.
public static final ItemType type
The Item type of the Geometry Editor.
public java.lang.String getItemName()
getItemName
in interface ItemBuilder
The name
ItemBuilder.getItemName()
public ItemType getItemType()
getItemType
in interface ItemBuilder
The type
ItemBuilder.getItemType()
public Item build(org.eclipse.core.resources.IProject projectSpace)
build
in interface ItemBuilder
projectSpace
- The Eclipse project that the Item should use for storage.
The newly created Item.
ItemBuilder.build(IProject projectSpace)