Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jdaemon.util
Class AttributeList.Entry  view AttributeList.Entry download AttributeList.Entry.java

java.lang.Object
  extended byorg.jdaemon.util.AttributeList.Entry
Enclosing class:
AttributeList

public static class AttributeList.Entry
extends java.lang.Object

Class for an entry in an AttributeList; Basically just a name/value pair


Field Summary
private  java.lang.String name
          The name of an attribute
private  java.lang.Object value
          The value of an attribute
 
Constructor Summary
AttributeList.Entry(java.lang.String name, java.lang.Object value)
          Create a new name/value pair
 
Method Summary
 java.lang.String getName()
          Get the name of this attribute
 java.lang.Object getValue()
          Get the value of this attribute
 java.lang.String toString()
          Write this attribute as a string: name = "value"
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

private java.lang.String name
The name of an attribute


value

private java.lang.Object value
The value of an attribute

Constructor Detail

AttributeList.Entry

public AttributeList.Entry(java.lang.String name,
                           java.lang.Object value)
Create a new name/value pair

Method Detail

getName

public java.lang.String getName()
Get the name of this attribute


getValue

public java.lang.Object getValue()
Get the value of this attribute


toString

public java.lang.String toString()
Write this attribute as a string: name = "value"