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
setTeamOversight(java.lang.String teamOversightName)
Specifies theTeamOversight
for theTeam
.void
setTeamSize(int teamSize)
-
-
-
Method Detail
-
setTeamSize
void setTeamSize(int teamSize)
- Parameters:
teamSize
-Team
size.
-
setTeamOversight
void setTeamOversight(java.lang.String teamOversightName)
Specifies theTeamOversight
for theTeam
.- Parameters:
teamOversightName
- Name of theTeamOversight
.
-
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.
-
-