Class HTMLValueObject

java.lang.Object
wt.templateutil.table.HTMLValueObject
Direct Known Subclasses:
WTAttribute

public class HTMLValueObject extends Object
Deprecated.
Deprecation Notice: This class is still valid for this release, however this serves as advance notice that it will be removed in the future. All user interfaces built using the Windchill HTML Template Processing client architecture will be rewritten using a different framework in an upcoming release. Base convenience class to be used with the HTMLTable and the TableModel.

Quite often more information is needed to present an object that simply the object itself. The HTMLValueObject presents a wrapper that allows the TableModel to pass all of the required information to the HMTL component that will render the object.

The information that the HTMLValueObject is a wrapper for is

  • displayObject - The object to display
  • source - Many of the objects to display in the HTML Client are attributes of another object. That object would be the source. The source could also be an associated object that affects the display
  • formElementName - The name to give the HTML form element if the displayObject is being being presented in an HTML Form element


Supported API: true

Extendable: false
  • Method Details

    • getSource

      public Object getSource()
      Deprecated.
      Gets the value of the attribute: source; source is the actual business object.

      Supported API: true
      Returns:
      Object
    • setSource

      public void setSource(Object a_Source)
      Deprecated.
      Sets the value of the attribute: source; source is the actual business object.

      Supported API: true
      Parameters:
      a_Source -
    • getDisplayClass

      public Class getDisplayClass()
      Deprecated.
      Gets the value of the attribute: displayClass; displayClass is the class of the object that an HTML component should present.

      Supported API: true
      Returns:
      Class
    • setDisplayClass

      public void setDisplayClass(Class a_DisplayClass)
      Deprecated.
      Sets the value of the attribute: displayClass; displayClass is the class of the object that an HTML component should present.

      Supported API: true
      Parameters:
      a_DisplayClass -
    • getFormElementName

      public String getFormElementName()
      Deprecated.
      Gets the value of the attribute: formElementName; formElementName is the name to use in the HTML form for either the INPUT or the SELECT element.

      Supported API: true
      Returns:
      String
    • setFormElementName

      public void setFormElementName(String a_FormElementName)
      Deprecated.
      Sets the value of the attribute: formElementName; formElementName is the name to use in the HTML form for either the INPUT or the SELECT element.

      Supported API: true
      Parameters:
      a_FormElementName -
    • getDisplayObject

      public Object getDisplayObject()
      Deprecated.
      Gets the value of the attribute: displayObject; displayObject is the object that an HTML component should present.

      Supported API: true
      Returns:
      Object
    • setDisplayObject

      public void setDisplayObject(Object a_DisplayObject)
      Deprecated.
      Sets the value of the attribute: displayObject; displayObject is the object that an HTML component should present.

      Supported API: true
      Parameters:
      a_DisplayObject -