Interface MasterSpread
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
MasterSpreadImpl
public interface MasterSpread extends java.io.SerializableThe Interface MasterSpread.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetId()Gets the id.java.lang.StringgetName()Gets the name.booleanisUsed()Checks if is used.voidsetId(int id)Sets the id.voidsetName(java.lang.String name)Sets the name.voidsetUsed(boolean used)Sets the used.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name.- Returns:
- the name
-
setName
void setName(java.lang.String name)
Sets the name.- Parameters:
name- the new name
-
getId
int getId()
Gets the id.- Returns:
- the id
-
setId
void setId(int id)
Sets the id.- Parameters:
id- the new id
-
isUsed
boolean isUsed()
Checks if is used.- Returns:
- true, if is used
-
setUsed
void setUsed(boolean used)
Sets the used.- Parameters:
used- the new used
-
-