Class TeamSourcePropertyImpl
- java.lang.Object
-
- net.officefloor.frame.api.team.source.impl.TeamSourcePropertyImpl
-
- All Implemented Interfaces:
TeamSourceProperty
public class TeamSourcePropertyImpl extends java.lang.Object implements TeamSourceProperty
TeamSourceProperty
implementation.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description TeamSourcePropertyImpl(java.lang.String name, java.lang.String label)
Initiate with name and label of property.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLabel()
Obtains the display name of the property.java.lang.String
getName()
Obtains name of property.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:TeamSourceProperty
Obtains name of property.- Specified by:
getName
in interfaceTeamSourceProperty
- Returns:
- Name of property.
-
getLabel
public java.lang.String getLabel()
Description copied from interface:TeamSourceProperty
Obtains the display name of the property. If this returnsnull
then the return value ofTeamSourceProperty.getName()
is used.- Specified by:
getLabel
in interfaceTeamSourceProperty
- Returns:
- Display name of property.
-
-