/**
* PropertyValue.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.
*/
package gate.creole.ontology.owlim;
public class PropertyValue {
private java.lang.String datatype;
private java.lang.String value;
public PropertyValue() {
}
public PropertyValue(
java.lang.String datatype,
java.lang.String value) {
this.datatype = datatype;
this.value = value;
}
/**
* Gets the datatype value for this PropertyValue.
*
* @return datatype
*/
public java.lang.String getDatatype() {
return datatype;
}
/**
* Sets the datatype value for this PropertyValue.
*
* @param datatype
*/
public void setDatatype(java.lang.String datatype) {
this.datatype = datatype;
}
/**
* Gets the value value for this PropertyValue.
*
* @return value
*/
public java.lang.String getValue() {
return value;
}
/**
* Sets the value value for this PropertyValue.
*
* @param value
*/
public void setValue(java.lang.String value) {
this.value = value;
}
}