org.deegree_impl.model.feature
Class FeatureProperty_Impl

java.lang.Object
  extended byorg.deegree_impl.model.feature.FeatureProperty_Impl
All Implemented Interfaces:
FeatureProperty, java.io.Serializable

class FeatureProperty_Impl
extends java.lang.Object
implements FeatureProperty, java.io.Serializable

the interface describes a property entry of a feature. It is made of a name and a value associated to it.

-----------------------------------------------------------------------

Version:
$Revision: 1.2 $ $Date: 2004/02/09 07:59:57 $
Author:
Andreas Poth

Field Summary
private  java.lang.String name
           
private  java.lang.Object value
           
 
Constructor Summary
(package private) FeatureProperty_Impl()
          default constructor
(package private) FeatureProperty_Impl(java.lang.String name, java.lang.Object value)
          constructor for complete initializing the FeatureProperty
 
Method Summary
 java.lang.String getName()
          returns the name of the property
 java.lang.Object getValue()
          returns the value of the property
 void setName(java.lang.String name)
          sets the name of the property
 void setValue(java.lang.Object value)
          sets the value of the property
 java.lang.String toString()
           
 
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

value

private java.lang.Object value
Constructor Detail

FeatureProperty_Impl

FeatureProperty_Impl()
default constructor


FeatureProperty_Impl

FeatureProperty_Impl(java.lang.String name,
                     java.lang.Object value)
constructor for complete initializing the FeatureProperty

Method Detail

getName

public java.lang.String getName()
returns the name of the property

Specified by:
getName in interface FeatureProperty

setName

public void setName(java.lang.String name)
sets the name of the property

Specified by:
setName in interface FeatureProperty

getValue

public java.lang.Object getValue()
returns the value of the property

Specified by:
getValue in interface FeatureProperty

setValue

public void setValue(java.lang.Object value)
sets the value of the property

Specified by:
setValue in interface FeatureProperty

toString

public java.lang.String toString()