Interface State
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
StateImpl
public interface State extends java.io.SerializableThe Interface State.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.DategetChanged()Gets the changed.java.util.DategetCreated()Gets the created.PlaceholderStategetSync()Gets the sync.booleanisVisible()Checks if is visible.voidsetChanged(java.util.Date changed)Sets the changed.voidsetCreated(java.util.Date created)Sets the created.voidsetSync(PlaceholderState sync)Sets the sync.voidsetVisible(boolean visible)Sets the visible.
-
-
-
Method Detail
-
getSync
PlaceholderState getSync()
Gets the sync.- Returns:
- the sync
- See Also:
PlaceholderState
-
setSync
void setSync(PlaceholderState sync)
Sets the sync.- Parameters:
sync- the new sync- See Also:
PlaceholderState
-
isVisible
boolean isVisible()
Checks if is visible.- Returns:
- true, if is visible
-
setVisible
void setVisible(boolean visible)
Sets the visible.- Parameters:
visible- the new visible
-
getCreated
java.util.Date getCreated()
Gets the created.- Returns:
- the created
- See Also:
Date
-
setCreated
void setCreated(java.util.Date created)
Sets the created.- Parameters:
created- the new created- See Also:
Date
-
getChanged
java.util.Date getChanged()
Gets the changed.- Returns:
- the changed
- See Also:
Date
-
setChanged
void setChanged(java.util.Date changed)
Sets the changed.- Parameters:
changed- the new changed- See Also:
Date
-
-