Class GUIWorkingTime
- java.lang.Object
-
- com.logicaldoc.gui.common.client.beans.GUIWorkingTime
-
- All Implemented Interfaces:
Serializable,Comparable<GUIWorkingTime>
public class GUIWorkingTime extends Object implements Serializable, Comparable<GUIWorkingTime>
A working time slot to be used in the GUI- Since:
- 8.7.2
- Author:
- Marco Meschieri - LogicalDOC
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GUIWorkingTime()GUIWorkingTime(String label, Date start, Date end)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(GUIWorkingTime o)StringgetDescription()DategetEnd()StringgetLabel()DategetStart()voidsetDescription(String description)voidsetEnd(Date end)voidsetLabel(String label)voidsetStart(Date start)
-
-
-
Method Detail
-
getStart
public Date getStart()
-
setStart
public void setStart(Date start)
-
getEnd
public Date getEnd()
-
setEnd
public void setEnd(Date end)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
compareTo
public int compareTo(GUIWorkingTime o)
- Specified by:
compareToin interfaceComparable<GUIWorkingTime>
-
-