Class AbstractGuiComponent

java.lang.Object
com.ptc.core.components.rendering.AbstractGuiComponent
All Implemented Interfaces:
GuiComponent, com.ptc.netmarkets.util.misc.NmFormatable, Serializable
Direct Known Subclasses:
AbstractGraphicalComponent, com.ptc.core.components.rendering.guicomponents.AttributeGuiComponent, GUIComponentArray, HTMLGuiComponent, SpinnerFieldComponent, VisualizationComponent

public abstract class AbstractGuiComponent extends Object implements GuiComponent, com.ptc.netmarkets.util.misc.NmFormatable, Serializable
The abstract super class for all JCA GUI components.
Supported API: true

Extendable: false
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setColumnName(String columnName$)
    Sets the column name of component
    Supported API: true
    void
    setEnabled(boolean a_Enabled)
    a_Enabled=true: renders the component as an input field a_Enabled=false; renders the component as display-text (does not render an input field)
    Supported API: true
    void
    Sets the id of Gui Component
    Supported API: true
    void
    setLabel(String label$)
    Sets the label of Gui Component
    Supported API: true
    void
    setMultiValued(boolean mv)
    Set whether the component is multi valued or not
    Supported API: true
    void
    Sets the name of Component
    Supported API: true

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Method Details

    • setEnabled

      public void setEnabled(boolean a_Enabled)
      a_Enabled=true: renders the component as an input field a_Enabled=false; renders the component as display-text (does not render an input field)
      Supported API: true
      Parameters:
      a_Enabled -
    • setLabel

      public void setLabel(String label$)
      Sets the label of Gui Component
      Supported API: true
      Parameters:
      label$ - label to be set
    • setId

      public void setId(String id$)
      Sets the id of Gui Component
      Supported API: true
      Parameters:
      id$ - Id to be set
    • setColumnName

      public void setColumnName(String columnName$)
      Sets the column name of component
      Supported API: true
      Parameters:
      columnName$ - column name to be set
    • setName

      public void setName(String n)
      Sets the name of Component
      Supported API: true
      Parameters:
      n - name to be set
    • setMultiValued

      public void setMultiValued(boolean mv)
      Set whether the component is multi valued or not
      Supported API: true
      Parameters:
      mv - mv=true: renders the component as multi-valued mv=false; renders the component as single valued.