Package com.sun.messaging
Interface PropertyOwner
-
public interface PropertyOwner
ThePropertyOwner
interface is implemented by any property that owns other properties. The property type of this property iscom.sun.messaging.PropertyOwner
.Setting a property Type to
com.sun.messaging.PropertyOwner
indicates that dependant property information can be obtained from the class via the interface methods described below.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPropertyDefault(java.lang.String propname)
Returns the default value of a single owned property.java.lang.String
getPropertyLabel(java.lang.String propname)
Returns the label of a single owned property.java.lang.String[]
getPropertyNames()
Returns a String array of property names that thisPropertyOwner
owns.java.lang.String
getPropertyType(java.lang.String propname)
Returns the type of a single owned property.
-
-
-
Method Detail
-
getPropertyNames
java.lang.String[] getPropertyNames()
Returns a String array of property names that thisPropertyOwner
owns.- Returns:
- The String array of property names that this
PropertyOwner
owns.
-
getPropertyType
java.lang.String getPropertyType(java.lang.String propname)
Returns the type of a single owned property.- Parameters:
propname
- The name of the owned property.- Returns:
- The type of the owned property
propname
.null
if the propertypropname
is invalid.
-
getPropertyLabel
java.lang.String getPropertyLabel(java.lang.String propname)
Returns the label of a single owned property.- Parameters:
propname
- The name of the owned property.- Returns:
- The label of the owned property
propname
.null
if the propertypropname
is invalid.
-
getPropertyDefault
java.lang.String getPropertyDefault(java.lang.String propname)
Returns the default value of a single owned property.- Parameters:
propname
- The name of the owned property.- Returns:
- The default value of the owned property
propname
.null
if the propertypropname
is invalid.
-
-