Oxygen XML Editor 14.2 Author API

ro.sync.ecss.extensions.docbook
Class DocbookSchemaManagerFilter

java.lang.Object
  extended by ro.sync.ecss.extensions.docbook.DocbookSchemaManagerFilter
All Implemented Interfaces:
SchemaManagerFilter, Extension

@API(type=INTERNAL,
     src=PUBLIC)
public class DocbookSchemaManagerFilter
extends java.lang.Object
implements SchemaManagerFilter

Schema manager filter which provides the available condition values.


Constructor Summary
DocbookSchemaManagerFilter(java.lang.String documentTypeName)
          Constructor.
 
Method Summary
 java.util.List<CIAttribute> filterAttributes(java.util.List<CIAttribute> attributes, WhatAttributesCanGoHereContext context)
          Filters the attributes proposed by the editor content completion schema manager.
 java.util.List<CIValue> filterAttributeValues(java.util.List<CIValue> attributeValues, WhatPossibleValuesHasAttributeContext context)
          Filters the attribute values proposed by the editor content completion schema manager.
 java.util.List<CIElement> filterElements(java.util.List<CIElement> elements, WhatElementsCanGoHereContext context)
          Filters the elements proposed by the editor content completion schema manager.
 java.util.List<CIValue> filterElementValues(java.util.List<CIValue> elementValues, Context context)
          Filters the element values proposed by the editor content completion schema manager.
 java.lang.String getDescription()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DocbookSchemaManagerFilter

public DocbookSchemaManagerFilter(java.lang.String documentTypeName)
Constructor.

Parameters:
documentTypeName - The document type name
Method Detail

filterAttributeValues

public java.util.List<CIValue> filterAttributeValues(java.util.List<CIValue> attributeValues,
                                                     WhatPossibleValuesHasAttributeContext context)
Description copied from interface: SchemaManagerFilter
Filters the attribute values proposed by the editor content completion schema manager. The original list of attribute values is obtained by examining the current document schema and determining what values are permitted for the current attribute. If the attribute type was an enumeration, then a list with the tokens of the enumeration will be returned for that attribute.

Specified by:
filterAttributeValues in interface SchemaManagerFilter
Parameters:
attributeValues - The list of attribute values (CIValue) to be filtered.
context - The WhatPossibleValuesHasAttributeContext where the list of attribute values is requested.
Returns:
The filtered list of CIValue representing possible values of the attribute or null if all values are rejected by the filter.
See Also:
SchemaManagerFilter.filterAttributeValues(java.util.List, ro.sync.contentcompletion.xml.WhatPossibleValuesHasAttributeContext)

filterAttributes

public java.util.List<CIAttribute> filterAttributes(java.util.List<CIAttribute> attributes,
                                                    WhatAttributesCanGoHereContext context)
Description copied from interface: SchemaManagerFilter
Filters the attributes proposed by the editor content completion schema manager. The original list of attributes is obtained by examining the current document schema and determining what attributes can be inserted in the current element and taking into account the list of existing attributes.

Specified by:
filterAttributes in interface SchemaManagerFilter
Parameters:
attributes - The list of attributes (CIAttribute) to be filtered. Can be NULL
context - The WhatAttributesCanGoHereContext where the list of attributes is requested.
Returns:
The filtered list of CIAttribute or null if all attributes are rejected by the filter.
See Also:
SchemaManagerFilter.filterAttributes(java.util.List, ro.sync.contentcompletion.xml.WhatAttributesCanGoHereContext)

filterElementValues

public java.util.List<CIValue> filterElementValues(java.util.List<CIValue> elementValues,
                                                   Context context)
Description copied from interface: SchemaManagerFilter
Filters the element values proposed by the editor content completion schema manager. The original list of element values is obtained by examining the current document schema and determining what values are permitted for the current element. If the element type was an enumeration, then a list with the values of the enumeration will be returned for that element.

Specified by:
filterElementValues in interface SchemaManagerFilter
Parameters:
elementValues - The list of element values (CIValue) to be filtered.
context - The Context where the list of element values is requested.
Returns:
The filtered list of CIValue representing the possible values of the element or null if all values are rejected by the filter.
See Also:
SchemaManagerFilter.filterElementValues(java.util.List, ro.sync.contentcompletion.xml.Context)

filterElements

public java.util.List<CIElement> filterElements(java.util.List<CIElement> elements,
                                                WhatElementsCanGoHereContext context)
Description copied from interface: SchemaManagerFilter
Filters the elements proposed by the editor content completion schema manager. The original list of elements is obtained by examining the current document schema and determining what possible elements can be inserted in the current context. For example if person is the current CIElement, and the list of children contains the elements name and address, the result of choosing the person entry from the content completion window will be the insertion of the following sequence:
 <person>
     <name>...</name>
     <address>...</address>
 </person>
 
Given this example, the original name CIElement can be replaced by a new one which returns a list with two new CIElements, firstName and lastName, on the CIElement.getGuessElements() method call. The new generated sequence would be:
 <person>
     <name>
         <firstName>...</firstName>
         <lastName>...</lastName>
     </name>
     <address>...</address>
 </person>
 

Specified by:
filterElements in interface SchemaManagerFilter
Parameters:
elements - The list of elements (CIElement) to be filtered.
context - The WhatElementsCanGoHereContext where the list of elements is requested. If null then the given list of content completion elements contains global elements.
Returns:
The filtered list of CIElement or null if all elements are rejected by the filter.
See Also:
SchemaManagerFilter.filterElements(java.util.List, ro.sync.contentcompletion.xml.WhatElementsCanGoHereContext)

getDescription

public java.lang.String getDescription()
Specified by:
getDescription in interface Extension
Returns:
The description of the extension.
See Also:
Extension.getDescription()

Oxygen XML Editor 14.2 Author API

© Copyright SyncRO Soft SRL 2002 - 2013. All rights reserved.