Homepage

netx.jnlp
Class PropertyDesc

    java.lang.Object
    |
    +--netx.jnlp.PropertyDesc

public class PropertyDesc
extends java.lang.Object

The property element.

Version:
$Revision: 1.1 $
Author:
Jon A. Maxwell (JAM) - initial author

Constructor Summary
PropertyDesc(java.lang.String key, java.lang.String value)
          Creates a property descriptor.
 
Method Summary
 java.lang.String getKey()
          Returns the property's key
 java.lang.String getValue()
          Returns the property's value
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PropertyDesc

    public PropertyDesc(java.lang.String key,
    java.lang.String value)
Creates a property descriptor.

Parameters:
key - the key name
value - the value
Method Detail

getKey

    public java.lang.String getKey()
Returns the property's key


getValue

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


Homepage