Package net.officefloor.woof.model.woof
Class WoofSectionOutputToWoofSectionInputModel
- java.lang.Object
-
- net.officefloor.model.AbstractModel
-
- net.officefloor.woof.model.woof.WoofSectionOutputToWoofSectionInputModel
-
- All Implemented Interfaces:
ConnectionModel
,Model
@Generated("net.officefloor.model.generate.ModelGenerator") public class WoofSectionOutputToWoofSectionInputModel extends AbstractModel implements ConnectionModel
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WoofSectionOutputToWoofSectionInputModel.WoofSectionOutputToWoofSectionInputEvent
-
Constructor Summary
Constructors Constructor Description WoofSectionOutputToWoofSectionInputModel()
Default constructor.WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName)
Convenience constructor for new non-linked instance.WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName, int x, int y)
Convenience constructor for new non-linked instance allowing XY initialising.WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName, WoofSectionOutputModel woofSectionOutput, WoofSectionInputModel woofSectionInput)
Convenience constructor.WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName, WoofSectionOutputModel woofSectionOutput, WoofSectionInputModel woofSectionInput, 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.java.lang.String
getInputName()
java.lang.String
getSectionName()
WoofSectionInputModel
getWoofSectionInput()
WoofSectionOutputModel
getWoofSectionOutput()
boolean
isRemovable()
Indicates if this connection is removable.void
remove()
Removes connection to theAbstractModel
instances.void
setInputName(java.lang.String inputName)
void
setSectionName(java.lang.String sectionName)
void
setWoofSectionInput(WoofSectionInputModel woofSectionInput)
void
setWoofSectionOutput(WoofSectionOutputModel woofSectionOutput)
-
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
-
WoofSectionOutputToWoofSectionInputModel
public WoofSectionOutputToWoofSectionInputModel()
Default constructor.
-
WoofSectionOutputToWoofSectionInputModel
public WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName)
Convenience constructor for new non-linked instance.- Parameters:
sectionName
- Section name.inputName
- Input name.
-
WoofSectionOutputToWoofSectionInputModel
public WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName, int x, int y)
Convenience constructor for new non-linked instance allowing XY initialising.- Parameters:
sectionName
- Section name.inputName
- Input name.x
- Horizontal location.y
- Vertical location.
-
WoofSectionOutputToWoofSectionInputModel
public WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName, WoofSectionOutputModel woofSectionOutput, WoofSectionInputModel woofSectionInput)
Convenience constructor.- Parameters:
sectionName
- Section name.inputName
- Input name.woofSectionOutput
- Woof section output.woofSectionInput
- Woof section input.
-
WoofSectionOutputToWoofSectionInputModel
public WoofSectionOutputToWoofSectionInputModel(java.lang.String sectionName, java.lang.String inputName, WoofSectionOutputModel woofSectionOutput, WoofSectionInputModel woofSectionInput, int x, int y)
Convenience constructor allowing XY initialising.- Parameters:
sectionName
- Section name.inputName
- Input name.woofSectionOutput
- Woof section output.woofSectionInput
- Woof section input.x
- Horizontal location.y
- Vertical location.
-
-
Method Detail
-
getSectionName
public java.lang.String getSectionName()
- Returns:
- Section name.
-
setSectionName
public void setSectionName(java.lang.String sectionName)
- Parameters:
sectionName
- Section name.
-
getInputName
public java.lang.String getInputName()
- Returns:
- Input name.
-
setInputName
public void setInputName(java.lang.String inputName)
- Parameters:
inputName
- Input name.
-
getWoofSectionOutput
public WoofSectionOutputModel getWoofSectionOutput()
- Returns:
- Woof section output.
-
setWoofSectionOutput
public void setWoofSectionOutput(WoofSectionOutputModel woofSectionOutput)
- Parameters:
woofSectionOutput
- Woof section output.
-
getWoofSectionInput
public WoofSectionInputModel getWoofSectionInput()
- Returns:
- Woof section input.
-
setWoofSectionInput
public void setWoofSectionInput(WoofSectionInputModel woofSectionInput)
- Parameters:
woofSectionInput
- Woof 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
-
-