Class SystemPropertiesTableModel.SystemProperty

  • Enclosing class:
    SystemPropertiesTableModel

    protected static class SystemPropertiesTableModel.SystemProperty
    extends java.lang.Object
    Useful class for holding the name and value of a system property.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String name
      The property name.
      private java.lang.String value
      The property value.
    • Constructor Summary

      Constructors 
      Constructor Description
      SystemProperty​(java.lang.String name, java.lang.String value)
      Standard constructor - builds a new SystemProperty.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the property name.
      java.lang.String getValue()
      Returns the property value.
      • Methods inherited from class java.lang.Object

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

      • name

        private java.lang.String name
        The property name.
      • value

        private java.lang.String value
        The property value.
    • Constructor Detail

      • SystemProperty

        public SystemProperty​(java.lang.String name,
                              java.lang.String value)
        Standard constructor - builds a new SystemProperty.
        Parameters:
        name - the property name.
        value - the property value.
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns the property name.
        Returns:
        the property name.
      • getValue

        public java.lang.String getValue()
        Returns the property value.
        Returns:
        the property value.