Package net.officefloor.model.section
Class SubSectionOutputToFunctionModel
- java.lang.Object
-
- net.officefloor.model.AbstractModel
-
- net.officefloor.model.section.SubSectionOutputToFunctionModel
-
- All Implemented Interfaces:
ConnectionModel,Model
@Generated("net.officefloor.model.generate.ModelGenerator") public class SubSectionOutputToFunctionModel extends AbstractModel implements ConnectionModel
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubSectionOutputToFunctionModel.SubSectionOutputToFunctionEvent
-
Constructor Summary
Constructors Constructor Description SubSectionOutputToFunctionModel()Default constructor.SubSectionOutputToFunctionModel(java.lang.String functionName)Convenience constructor for new non-linked instance.SubSectionOutputToFunctionModel(java.lang.String functionName, int x, int y)Convenience constructor for new non-linked instance allowing XY initialising.SubSectionOutputToFunctionModel(java.lang.String functionName, SubSectionOutputModel subSectionOutput, FunctionModel function)Convenience constructor.SubSectionOutputToFunctionModel(java.lang.String functionName, SubSectionOutputModel subSectionOutput, FunctionModel function, int x, int y)Convenience constructor allowing XY initialising.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconnect()Connects to theAbstractModelinstances.FunctionModelgetFunction()java.lang.StringgetFunctionName()SubSectionOutputModelgetSubSectionOutput()booleanisRemovable()Indicates if this connection is removable.voidremove()Removes connection to theAbstractModelinstances.voidsetFunction(FunctionModel function)voidsetFunctionName(java.lang.String functionName)voidsetSubSectionOutput(SubSectionOutputModel subSectionOutput)-
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
-
SubSectionOutputToFunctionModel
public SubSectionOutputToFunctionModel()
Default constructor.
-
SubSectionOutputToFunctionModel
public SubSectionOutputToFunctionModel(java.lang.String functionName)
Convenience constructor for new non-linked instance.- Parameters:
functionName- Function name.
-
SubSectionOutputToFunctionModel
public SubSectionOutputToFunctionModel(java.lang.String functionName, int x, int y)Convenience constructor for new non-linked instance allowing XY initialising.- Parameters:
functionName- Function name.x- Horizontal location.y- Vertical location.
-
SubSectionOutputToFunctionModel
public SubSectionOutputToFunctionModel(java.lang.String functionName, SubSectionOutputModel subSectionOutput, FunctionModel function)Convenience constructor.- Parameters:
functionName- Function name.subSectionOutput- Sub section output.function- Function.
-
SubSectionOutputToFunctionModel
public SubSectionOutputToFunctionModel(java.lang.String functionName, SubSectionOutputModel subSectionOutput, FunctionModel function, int x, int y)Convenience constructor allowing XY initialising.- Parameters:
functionName- Function name.subSectionOutput- Sub section output.function- Function.x- Horizontal location.y- Vertical location.
-
-
Method Detail
-
getFunctionName
public java.lang.String getFunctionName()
- Returns:
- Function name.
-
setFunctionName
public void setFunctionName(java.lang.String functionName)
- Parameters:
functionName- Function name.
-
getSubSectionOutput
public SubSectionOutputModel getSubSectionOutput()
- Returns:
- Sub section output.
-
setSubSectionOutput
public void setSubSectionOutput(SubSectionOutputModel subSectionOutput)
- Parameters:
subSectionOutput- Sub section output.
-
getFunction
public FunctionModel getFunction()
- Returns:
- Function.
-
setFunction
public void setFunction(FunctionModel function)
- Parameters:
function- Function.
-
isRemovable
public boolean isRemovable()
Description copied from interface:ConnectionModelIndicates if this connection is removable.- Specified by:
isRemovablein interfaceConnectionModel- Returns:
- Indicates if removable.
-
connect
public void connect()
Connects to theAbstractModelinstances.- Specified by:
connectin interfaceConnectionModel
-
remove
public void remove()
Removes connection to theAbstractModelinstances.- Specified by:
removein interfaceConnectionModel
-
-