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 int
compareTo(GUIWorkingTime o)
String
getDescription()
Date
getEnd()
String
getLabel()
Date
getStart()
void
setDescription(String description)
void
setEnd(Date end)
void
setLabel(String label)
void
setStart(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:
compareTo
in interfaceComparable<GUIWorkingTime>
-
-