Package net.officefloor.model.section
Class SectionManagedObjectPoolModel
- java.lang.Object
-
- net.officefloor.model.AbstractModel
-
- net.officefloor.model.section.SectionManagedObjectPoolModel
-
- All Implemented Interfaces:
ItemModel<SectionManagedObjectPoolModel>
,Model
@Generated("net.officefloor.model.generate.ModelGenerator") public class SectionManagedObjectPoolModel extends AbstractModel implements ItemModel<SectionManagedObjectPoolModel>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent
-
Constructor Summary
Constructors Constructor Description SectionManagedObjectPoolModel()
Default constructor.SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName)
Convenience constructor for new non-linked instance.SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName, int x, int y)
Convenience constructor for new non-linked instance allowing XY initialising.SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName, PropertyModel[] property, SectionManagedObjectSourceToSectionManagedObjectPoolModel[] sectionManagedObjectSource)
Convenience constructor.SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName, PropertyModel[] property, SectionManagedObjectSourceToSectionManagedObjectPoolModel[] sectionManagedObjectSource, int x, int y)
Convenience constructor allowing XY initialising.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addProperty(PropertyModel property)
void
addSectionManagedObjectSource(SectionManagedObjectSourceToSectionManagedObjectPoolModel sectionManagedObjectSource)
java.lang.String
getManagedObjectPoolSourceClassName()
java.util.List<PropertyModel>
getProperties()
java.lang.String
getSectionManagedObjectPoolName()
java.util.List<SectionManagedObjectSourceToSectionManagedObjectPoolModel>
getSectionManagedObjectSources()
RemoveConnectionsAction<SectionManagedObjectPoolModel>
removeConnections()
Remove Connections.void
removeProperty(PropertyModel property)
void
removeSectionManagedObjectSource(SectionManagedObjectSourceToSectionManagedObjectPoolModel sectionManagedObjectSource)
void
setManagedObjectPoolSourceClassName(java.lang.String managedObjectPoolSourceClassName)
void
setSectionManagedObjectPoolName(java.lang.String sectionManagedObjectPoolName)
-
Methods inherited from class net.officefloor.model.AbstractModel
addItemToList, addPropertyChangeListener, changeField, firePropertyChange, getX, getY, removeItemFromList, removePropertyChangeListener, setX, setY
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.officefloor.model.Model
addPropertyChangeListener, getX, getY, removePropertyChangeListener, setX, setY
-
-
-
-
Constructor Detail
-
SectionManagedObjectPoolModel
public SectionManagedObjectPoolModel()
Default constructor.
-
SectionManagedObjectPoolModel
public SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName)
Convenience constructor for new non-linked instance.- Parameters:
sectionManagedObjectPoolName
- Section managed object pool name.managedObjectPoolSourceClassName
- Managed object pool source class name.
-
SectionManagedObjectPoolModel
public SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName, int x, int y)
Convenience constructor for new non-linked instance allowing XY initialising.- Parameters:
sectionManagedObjectPoolName
- Section managed object pool name.managedObjectPoolSourceClassName
- Managed object pool source class name.x
- Horizontal location.y
- Vertical location.
-
SectionManagedObjectPoolModel
public SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName, PropertyModel[] property, SectionManagedObjectSourceToSectionManagedObjectPoolModel[] sectionManagedObjectSource)
Convenience constructor.- Parameters:
sectionManagedObjectPoolName
- Section managed object pool name.managedObjectPoolSourceClassName
- Managed object pool source class name.property
- Property.sectionManagedObjectSource
- Section managed object source.
-
SectionManagedObjectPoolModel
public SectionManagedObjectPoolModel(java.lang.String sectionManagedObjectPoolName, java.lang.String managedObjectPoolSourceClassName, PropertyModel[] property, SectionManagedObjectSourceToSectionManagedObjectPoolModel[] sectionManagedObjectSource, int x, int y)
Convenience constructor allowing XY initialising.- Parameters:
sectionManagedObjectPoolName
- Section managed object pool name.managedObjectPoolSourceClassName
- Managed object pool source class name.property
- Property.sectionManagedObjectSource
- Section managed object source.x
- Horizontal location.y
- Vertical location.
-
-
Method Detail
-
getSectionManagedObjectPoolName
public java.lang.String getSectionManagedObjectPoolName()
- Returns:
- Section managed object pool name.
-
setSectionManagedObjectPoolName
public void setSectionManagedObjectPoolName(java.lang.String sectionManagedObjectPoolName)
- Parameters:
sectionManagedObjectPoolName
- Section managed object pool name.
-
getManagedObjectPoolSourceClassName
public java.lang.String getManagedObjectPoolSourceClassName()
- Returns:
- Managed object pool source class name.
-
setManagedObjectPoolSourceClassName
public void setManagedObjectPoolSourceClassName(java.lang.String managedObjectPoolSourceClassName)
- Parameters:
managedObjectPoolSourceClassName
- Managed object pool source class name.
-
getProperties
public java.util.List<PropertyModel> getProperties()
- Returns:
- Property.
-
addProperty
public void addProperty(PropertyModel property)
- Parameters:
property
- Property.
-
removeProperty
public void removeProperty(PropertyModel property)
- Parameters:
property
- Property.
-
getSectionManagedObjectSources
public java.util.List<SectionManagedObjectSourceToSectionManagedObjectPoolModel> getSectionManagedObjectSources()
- Returns:
- Section managed object source.
-
addSectionManagedObjectSource
public void addSectionManagedObjectSource(SectionManagedObjectSourceToSectionManagedObjectPoolModel sectionManagedObjectSource)
- Parameters:
sectionManagedObjectSource
- Section managed object source.
-
removeSectionManagedObjectSource
public void removeSectionManagedObjectSource(SectionManagedObjectSourceToSectionManagedObjectPoolModel sectionManagedObjectSource)
- Parameters:
sectionManagedObjectSource
- Section managed object source.
-
removeConnections
public RemoveConnectionsAction<SectionManagedObjectPoolModel> removeConnections()
Remove Connections.- Specified by:
removeConnections
in interfaceItemModel<SectionManagedObjectPoolModel>
- Returns:
RemoveConnectionsAction
to remove theConnectionModel
instances.
-
-