Package net.officefloor.frame.api.build
Interface TeamBuilder<TS extends TeamSource>
-
- All Known Implementing Classes:
TeamBuilderImpl
public interface TeamBuilder<TS extends TeamSource>
Builder of aTeam
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addProperty(java.lang.String name, java.lang.String value)
Specifies a property for theTeamSource
.void
requestNoTeamOversight()
void
setTeamSize(int teamSize)
-
-
-
Method Detail
-
setTeamSize
void setTeamSize(int teamSize)
- Parameters:
teamSize
-Team
size.
-
requestNoTeamOversight
void requestNoTeamOversight()
Requests to the
Executive
that there be noTeamOversight
for theTeam
.Respecting this request is
Executive
implementation specific.
-
addProperty
void addProperty(java.lang.String name, java.lang.String value)
Specifies a property for theTeamSource
.- Parameters:
name
- Name of property.value
- Value of property.
-
-