Oxygen XML Editor 11.2 Author API

ro.sync.contentcompletion.xml
Interface NodeDescription

All Known Subinterfaces:
CIElement
All Known Implementing Classes:
CIAttribute, CIElementAdapter

public interface NodeDescription

Node description is in fact a collection of properties for a node. The node can be either an attribute or an element.


Method Summary
 String getAnnotation()
           
 String getFacetFractionDigitsValue()
          Get the value of the FRACTION_DIGITS facet, can be null if it is not defined.
 String getFacetLengthValue()
          Get the value of the LENGTH facet, can be null if it is not defined.
 String getFacetMaxExclusiveValue()
          Get the value of the MAX_EXCLUSIVE facet, can be null if it is not defined.
 String getFacetMaxInclusiveValue()
          Get the value of the MAX_INCLUSIVE facet, can be null if it is not defined.
 String getFacetMaxLengthValue()
          Get the value of the MAX LENGTH facet, can be null if it is not defined.
 String getFacetMinExclusiveValue()
          Get the value of the MIN_EXCLUSIVE facet, can be null if it is not defined.
 String getFacetMinInclusiveValue()
          Get the value of the MIN_INCLUSIVE facet, can be null if it is not defined.
 String getFacetMinLengthValue()
          Get the value of the MIN LENGTH facet, can be null if it is not defined.
 String getFacetPattern()
          Get the value of the PATTERN facets as String, can be null if is not defined.
 String getFacetTotalDigitsValue()
          Get the value of the TOTAL_DIGITS facet, can be null if it is not defined.
 String getFacetWhitespaceValue()
          Get the value of the WHITESPACE facet, can be null if it is not defined.
 String getModelDescription()
          Get the model description.
 String getName()
          Get the node(attribute or element) name.
 List<String> getPossibleValues()
          Get the possible values as a list of String values.
 void setFacetFractionDigitsValue(String fractionDigitsFacetValue)
          Set the value of the FRACTION_DIGITS facet.
 void setFacetLengthValue(String lengthFacetValue)
          Set the value of the LENGTH facet.
 void setFacetMaxExclusiveValue(String maxExclusiveFacetValue)
          Set the value of the MAX_EXCLUSIVE facet.
 void setFacetMaxInclusiveValue(String maxInclusiveFacetValue)
          Set the value of the MAX_INCLUSIVE facet.
 void setFacetMaxLengthValue(String maxLengthFacetValue)
          Set the value of the MAX_LENGTH facet.
 void setFacetMinExclusiveValue(String minExclusiveFacetValue)
          Set the value of the MIN_EXCLUSIVE facet.
 void setFacetMinInclusiveValue(String minInclusiveFacetValue)
          Set the value of the MIN_INCLUSIVE facet.
 void setFacetMinLengthValue(String minLengthFacetValue)
          Set the value of the MIN_LENGTH facet.
 void setFacetPattern(String patternFacets)
          Set the value of the PATTERN facets.
 void setFacetTotalDigitsValue(String totalDigitsFacetValue)
          Set the value of the TOTAL_DIGITS facet.
 void setFacetWhitespaceValue(String whitespaceFacetValue)
          Set the value of the WHITESPACE facet.
 void setModelDescription(String modelDescription)
          Set the model description for the node.
 void setPossiblesValues(List<String> possiblesValues)
          Set the list of possible values for the node.
 

Method Detail

getName

String getName()
Get the node(attribute or element) name.

Returns:
The node(attribute or element) name.

getPossibleValues

List<String> getPossibleValues()
Get the possible values as a list of String values.

Returns:
The list of possible values.

getModelDescription

String getModelDescription()
Get the model description.

Returns:
The model description.

getFacetLengthValue

String getFacetLengthValue()
Get the value of the LENGTH facet, can be null if it is not defined.

Returns:
The value of the LENGTH facet.

getFacetMinLengthValue

String getFacetMinLengthValue()
Get the value of the MIN LENGTH facet, can be null if it is not defined.

Returns:
The value of the MIN LENGTH facet.

getFacetMaxLengthValue

String getFacetMaxLengthValue()
Get the value of the MAX LENGTH facet, can be null if it is not defined.

Returns:
The value of the MAX LENGTH facet.

getFacetWhitespaceValue

String getFacetWhitespaceValue()
Get the value of the WHITESPACE facet, can be null if it is not defined.

Returns:
The value of the WHITESPACE facet.

getFacetMinInclusiveValue

String getFacetMinInclusiveValue()
Get the value of the MIN_INCLUSIVE facet, can be null if it is not defined.

Returns:
The value of the MIN_INCLUSIVE facet.

getFacetMinExclusiveValue

String getFacetMinExclusiveValue()
Get the value of the MIN_EXCLUSIVE facet, can be null if it is not defined.

Returns:
The value of the MIN_EXCLUSIVE facet.

getFacetMaxInclusiveValue

String getFacetMaxInclusiveValue()
Get the value of the MAX_INCLUSIVE facet, can be null if it is not defined.

Returns:
The value of the MAX_INCLUSIVE facet.

getFacetMaxExclusiveValue

String getFacetMaxExclusiveValue()
Get the value of the MAX_EXCLUSIVE facet, can be null if it is not defined.

Returns:
The value of the MAX_EXCLUSIVE facet.

getFacetTotalDigitsValue

String getFacetTotalDigitsValue()
Get the value of the TOTAL_DIGITS facet, can be null if it is not defined.

Returns:
The value of the TOTAL_DIGITS facet.

getFacetFractionDigitsValue

String getFacetFractionDigitsValue()
Get the value of the FRACTION_DIGITS facet, can be null if it is not defined.

Returns:
The value of the FRACTION_DIGITS facet.

setFacetFractionDigitsValue

void setFacetFractionDigitsValue(String fractionDigitsFacetValue)
Set the value of the FRACTION_DIGITS facet.

Parameters:
fractionDigitsFacetValue - The value of the FRACTION_DIGITS facet to set.

setFacetMaxExclusiveValue

void setFacetMaxExclusiveValue(String maxExclusiveFacetValue)
Set the value of the MAX_EXCLUSIVE facet.

Parameters:
maxExclusiveFacetValue - The value of the MAX_EXCLUSIVE facet to set.

setFacetMaxInclusiveValue

void setFacetMaxInclusiveValue(String maxInclusiveFacetValue)
Set the value of the MAX_INCLUSIVE facet.

Parameters:
maxInclusiveFacetValue - The value of the MAX_INCLUSIVE facet to set.

setFacetMaxLengthValue

void setFacetMaxLengthValue(String maxLengthFacetValue)
Set the value of the MAX_LENGTH facet.

Parameters:
maxLengthFacetValue - The value of the MAX_LENGTH facet to set.

setFacetMinInclusiveValue

void setFacetMinInclusiveValue(String minInclusiveFacetValue)
Set the value of the MIN_INCLUSIVE facet.

Parameters:
minInclusiveFacetValue - The value of the MIN_INCLUSIVE facet to set.

setPossiblesValues

void setPossiblesValues(List<String> possiblesValues)
Set the list of possible values for the node.

Parameters:
possiblesValues - The list with possible (String) values.

setFacetTotalDigitsValue

void setFacetTotalDigitsValue(String totalDigitsFacetValue)
Set the value of the TOTAL_DIGITS facet.

Parameters:
totalDigitsFacetValue - The value of the TOTAL_DIGITS facet to set.

setFacetWhitespaceValue

void setFacetWhitespaceValue(String whitespaceFacetValue)
Set the value of the WHITESPACE facet.

Parameters:
whitespaceFacetValue - The value of the WHITESPACE facet to set.

setModelDescription

void setModelDescription(String modelDescription)
Set the model description for the node.

Parameters:
modelDescription - The modelDescription to set.

setFacetLengthValue

void setFacetLengthValue(String lengthFacetValue)
Set the value of the LENGTH facet.

Parameters:
lengthFacetValue - The value of the LENGTH facet to set.

setFacetMinLengthValue

void setFacetMinLengthValue(String minLengthFacetValue)
Set the value of the MIN_LENGTH facet.

Parameters:
minLengthFacetValue - The value of the MIN_LENGTH facet to set.

setFacetMinExclusiveValue

void setFacetMinExclusiveValue(String minExclusiveFacetValue)
Set the value of the MIN_EXCLUSIVE facet.

Parameters:
minExclusiveFacetValue - The value of the MIN_EXCLUSIVE facet to set.

getFacetPattern

String getFacetPattern()
Get the value of the PATTERN facets as String, can be null if is not defined.

Returns:
The PATTERN facets as a String.

setFacetPattern

void setFacetPattern(String patternFacets)
Set the value of the PATTERN facets.

Parameters:
patternFacets - The value of the PATTERN facets to set.

getAnnotation

String getAnnotation()
Returns:
The node annotation, can be null.

Oxygen XML Editor 11.2 Author API

© Copyright SyncRO Soft SRL 2002 - 2010.