Class ControlProperties


  • public class ControlProperties
    extends java.lang.Object
    Class that holds control attributes.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      boolean glue
      True to glue the next control in this one.
      java.lang.String name
      The name of this control
      Style style
      The style of this control
      java.lang.String value
      The value held by this controll
    • Constructor Summary

      Constructors 
      Constructor Description
      ControlProperties​(java.lang.String name, java.lang.String value, Style style)  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Style getStyle​(Control c)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • name

        public java.lang.String name
        The name of this control
      • value

        public java.lang.String value
        The value held by this controll
      • style

        public Style style
        The style of this control
      • glue

        public boolean glue
        True to glue the next control in this one.
    • Constructor Detail

      • ControlProperties

        public ControlProperties​(java.lang.String name,
                                 java.lang.String value,
                                 Style style)
    • Method Detail