Package com.uc4.api
Class DetailGroup
- java.lang.Object
-
- com.uc4.api.DetailGroup
-
public class DetailGroup extends java.lang.ObjectThis class represents a Group in the Detail of a task. A Detail can contain more than one tab. The methodgetDetailTab()can be used to get the name of the tab.
-
-
Constructor Summary
Constructors Constructor Description DetailGroup(java.lang.String name, java.util.LinkedHashMap<java.lang.String,java.lang.String> properties, java.lang.String tab)Constructs aDetailGroupusing the specified parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.LinkedHashMap<java.lang.String,java.lang.String>getDetails()Returns the details of this group in the same order as sent by the server.java.lang.StringgetDetailTab()Returns the name of the tab.java.lang.StringgetName()Returns the name of this group.java.util.PropertiesgetProperties()Returns the properties of this group.
-
-
-
Constructor Detail
-
DetailGroup
public DetailGroup(java.lang.String name, java.util.LinkedHashMap<java.lang.String,java.lang.String> properties, java.lang.String tab)Constructs aDetailGroupusing the specified parameters.- Parameters:
name- Name of the Groupproperties- Propertiestab- Name of tab to which this group belongs
-
-
Method Detail
-
getDetailTab
public java.lang.String getDetailTab()
Returns the name of the tab.- Returns:
- tab name
-
getName
public java.lang.String getName()
Returns the name of this group.- Returns:
- group name
-
getProperties
public java.util.Properties getProperties()
Returns the properties of this group.- Returns:
- properties
-
getDetails
public java.util.LinkedHashMap<java.lang.String,java.lang.String> getDetails()
Returns the details of this group in the same order as sent by the server.- Returns:
- Details of a group
-
-