Class Notation
- java.lang.Object
-
- org.apache.axis2.databinding.types.Notation
-
- All Implemented Interfaces:
Serializable
public class Notation extends Object implements Serializable
Custom class for supporting XSD data type NOTATION.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
NCName
getName()
URI
getPublic()
URI
getSystem()
int
hashCode()
Returns the sum of the hashcodes of {name,publicURI,systemURI} for whichever properties in that set is non null.void
setName(NCName name)
void
setPublic(URI publicURI)
void
setSystem(URI systemURI)
-
-
-
Method Detail
-
getName
public NCName getName()
-
setName
public void setName(NCName name)
-
getPublic
public URI getPublic()
-
setPublic
public void setPublic(URI publicURI)
-
getSystem
public URI getSystem()
-
setSystem
public void setSystem(URI systemURI)
-
hashCode
public int hashCode()
Returns the sum of the hashcodes of {name,publicURI,systemURI} for whichever properties in that set is non null. This is consistent with the implementation of equals, as required byObject.hashCode
.
-
-