Package net.officefloor.model.section
Class FunctionEscalationToSubSectionInputModel
- java.lang.Object
-
- net.officefloor.model.AbstractModel
-
- net.officefloor.model.section.FunctionEscalationToSubSectionInputModel
-
- All Implemented Interfaces:
ConnectionModel
,Model
@Generated("net.officefloor.model.generate.ModelGenerator") public class FunctionEscalationToSubSectionInputModel extends AbstractModel implements ConnectionModel
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FunctionEscalationToSubSectionInputModel.FunctionEscalationToSubSectionInputEvent
-
Constructor Summary
Constructors Constructor Description FunctionEscalationToSubSectionInputModel()
Default constructor.FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName)
Convenience constructor for new non-linked instance.FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName, int x, int y)
Convenience constructor for new non-linked instance allowing XY initialising.FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName, FunctionEscalationModel functionEscalation, SubSectionInputModel subSectionInput)
Convenience constructor.FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName, FunctionEscalationModel functionEscalation, SubSectionInputModel subSectionInput, int x, int y)
Convenience constructor allowing XY initialising.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
connect()
Connects to theAbstractModel
instances.FunctionEscalationModel
getFunctionEscalation()
SubSectionInputModel
getSubSectionInput()
java.lang.String
getSubSectionInputName()
java.lang.String
getSubSectionName()
boolean
isRemovable()
Indicates if this connection is removable.void
remove()
Removes connection to theAbstractModel
instances.void
setFunctionEscalation(FunctionEscalationModel functionEscalation)
void
setSubSectionInput(SubSectionInputModel subSectionInput)
void
setSubSectionInputName(java.lang.String subSectionInputName)
void
setSubSectionName(java.lang.String subSectionName)
-
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
-
FunctionEscalationToSubSectionInputModel
public FunctionEscalationToSubSectionInputModel()
Default constructor.
-
FunctionEscalationToSubSectionInputModel
public FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName)
Convenience constructor for new non-linked instance.- Parameters:
subSectionName
- Sub section name.subSectionInputName
- Sub section input name.
-
FunctionEscalationToSubSectionInputModel
public FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName, int x, int y)
Convenience constructor for new non-linked instance allowing XY initialising.- Parameters:
subSectionName
- Sub section name.subSectionInputName
- Sub section input name.x
- Horizontal location.y
- Vertical location.
-
FunctionEscalationToSubSectionInputModel
public FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName, FunctionEscalationModel functionEscalation, SubSectionInputModel subSectionInput)
Convenience constructor.- Parameters:
subSectionName
- Sub section name.subSectionInputName
- Sub section input name.functionEscalation
- Function escalation.subSectionInput
- Sub section input.
-
FunctionEscalationToSubSectionInputModel
public FunctionEscalationToSubSectionInputModel(java.lang.String subSectionName, java.lang.String subSectionInputName, FunctionEscalationModel functionEscalation, SubSectionInputModel subSectionInput, int x, int y)
Convenience constructor allowing XY initialising.- Parameters:
subSectionName
- Sub section name.subSectionInputName
- Sub section input name.functionEscalation
- Function escalation.subSectionInput
- Sub section input.x
- Horizontal location.y
- Vertical location.
-
-
Method Detail
-
getSubSectionName
public java.lang.String getSubSectionName()
- Returns:
- Sub section name.
-
setSubSectionName
public void setSubSectionName(java.lang.String subSectionName)
- Parameters:
subSectionName
- Sub section name.
-
getSubSectionInputName
public java.lang.String getSubSectionInputName()
- Returns:
- Sub section input name.
-
setSubSectionInputName
public void setSubSectionInputName(java.lang.String subSectionInputName)
- Parameters:
subSectionInputName
- Sub section input name.
-
getFunctionEscalation
public FunctionEscalationModel getFunctionEscalation()
- Returns:
- Function escalation.
-
setFunctionEscalation
public void setFunctionEscalation(FunctionEscalationModel functionEscalation)
- Parameters:
functionEscalation
- Function escalation.
-
getSubSectionInput
public SubSectionInputModel getSubSectionInput()
- Returns:
- Sub section input.
-
setSubSectionInput
public void setSubSectionInput(SubSectionInputModel subSectionInput)
- Parameters:
subSectionInput
- Sub section input.
-
isRemovable
public boolean isRemovable()
Description copied from interface:ConnectionModel
Indicates if this connection is removable.- Specified by:
isRemovable
in interfaceConnectionModel
- Returns:
- Indicates if removable.
-
connect
public void connect()
Connects to theAbstractModel
instances.- Specified by:
connect
in interfaceConnectionModel
-
remove
public void remove()
Removes connection to theAbstractModel
instances.- Specified by:
remove
in interfaceConnectionModel
-
-