AdventNet Web NMS 4 API Specification

com.adventnet.nms.fe.common
Class CustomViewProperties

java.lang.Object
  |
  +--com.adventnet.nms.fe.common.CustomViewProperties
All Implemented Interfaces:
java.io.Serializable

public class CustomViewProperties
extends java.lang.Object
implements java.io.Serializable

The CustomViewProperties class is intended to hold all information about a custom view.

Since:
1.0
See Also:
Serializable, Serialized Form

Constructor Summary
CustomViewProperties(java.lang.String viewId)
          Constructs a CustomViewProperties with the specified viewId.
CustomViewProperties(java.lang.String viewName, java.lang.String parent)
          Creates a new CustomViewProperties instance with viewName and parent.
 
Method Summary
 java.util.Properties getCriteriaProperties()
          Get the value of criteriaProperties.
 java.util.Properties getPanelProperties()
          Get the value of panelProperties.
 java.lang.String getParent()
          Get the value of parent.
 TableColumn[] getTableColumns()
          Get the value of tableColumns.
 java.lang.String getViewId()
          Get the value of viewId.
 java.lang.String getViewName()
          Get the value of viewName.
 void setCriteriaProperties(java.util.Properties v)
          Set the value of criteriaProperties.
 void setPanelProperties(java.util.Properties v)
          Set the value of panelProperties.
 void setParent(java.lang.String v)
          Set the value of parent.
 void setTableColumns(TableColumn[] v)
          Set the value of tableColumns.
 void setViewId(java.lang.String v)
          Set the value of viewId.
 void setViewName(java.lang.String v)
          Set the value of viewName.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CustomViewProperties

public CustomViewProperties(java.lang.String viewId)
Constructs a CustomViewProperties with the specified viewId.
Parameters:
viewId - : viewId of the custom view represented by this object.

CustomViewProperties

public CustomViewProperties(java.lang.String viewName,
                            java.lang.String parent)
Creates a new CustomViewProperties instance with viewName and parent.
Parameters:
viewName - viewName of the custom view represented by this object.
parent - parent of the custom view represented by this object.
Method Detail

getViewId

public java.lang.String getViewId()
Get the value of viewId.
Returns:
value of viewId.

setViewId

public void setViewId(java.lang.String v)
Set the value of viewId.
Parameters:
v - Value to assign to viewId.

getViewName

public java.lang.String getViewName()
Get the value of viewName.
Returns:
value of viewName.

setViewName

public void setViewName(java.lang.String v)
Set the value of viewName.
Parameters:
v - Value to assign to viewName.

getParent

public java.lang.String getParent()
Get the value of parent.
Returns:
value of parent.

setParent

public void setParent(java.lang.String v)
Set the value of parent.
Parameters:
v - Value to assign to parent.

getTableColumns

public TableColumn[] getTableColumns()
Get the value of tableColumns.
Returns:
value of tableColumns.

setTableColumns

public void setTableColumns(TableColumn[] v)
Set the value of tableColumns.
Parameters:
v - Value to assign to tableColumns.

getCriteriaProperties

public java.util.Properties getCriteriaProperties()
Get the value of criteriaProperties.
Returns:
value of criteriaProperties.

setCriteriaProperties

public void setCriteriaProperties(java.util.Properties v)
Set the value of criteriaProperties.
Parameters:
v - Value to assign to criteriaProperties.

getPanelProperties

public java.util.Properties getPanelProperties()
Get the value of panelProperties.
Returns:
value of panelProperties.

setPanelProperties

public void setPanelProperties(java.util.Properties v)
Set the value of panelProperties.
Parameters:
v - Value to assign to panelProperties.

AdventNet Web NMS 4 API Specification