jasp.adodb
Class Property

java.lang.Object
  |
  +--jasp.adodb.Property

public class Property
extends java.lang.Object

A Property object represents a dynamic characteristic of an ADO object that is defined by the provider.


Constructor Summary
Property()
           
 
Method Summary
 int getAttributes()
          Returns the attributes of the Property.
 java.lang.String getName()
          Returns the name of the Property.
 int getType()
          Returns the type of the Property
 java.lang.Object getValue()
          Returns the value of the Property.
 void setAttributes(int attrib)
          Sets the attributes of the Property.
 void setName(java.lang.String name)
          Sets the name of the Property.
 void setType(int type)
          Sets the type of the Property.
 void setValue(java.lang.Object val)
          Sets the value of teh Property.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Property

public Property()
Method Detail

getValue

public java.lang.Object getValue()
Returns the value of the Property.

setValue

public void setValue(java.lang.Object val)
Sets the value of teh Property.

getAttributes

public int getAttributes()
Returns the attributes of the Property.

setAttributes

public void setAttributes(int attrib)
Sets the attributes of the Property.

getName

public java.lang.String getName()
Returns the name of the Property.

setName

public void setName(java.lang.String name)
Sets the name of the Property.

getType

public int getType()
Returns the type of the Property

setType

public void setType(int type)
Sets the type of the Property.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object