Package ro.sync.contentcompletion.xml
Interface SchemaManagerFilter
- All Superinterfaces:
Extension
- All Known Implementing Classes:
DITASchemaManagerFilter,DITAValSchemaManagerFilter,DocbookSchemaManagerFilter,SchemaManagerFilterBase,StyleGuideSchemaManagerFilterBase,XHTMLSchemaManagerFilter
Interface for objects used to filter the editor content completion
schema manager proposals. This should be implemented if the
list of content completion proposals must be filtered based on some criteria or
some new entries need to be added.
-
Method Summary
Modifier and TypeMethodDescriptionfilterAttributes(List<CIAttribute> attributes, WhatAttributesCanGoHereContext context) Filters the attributes proposed by the editor content completion schema manager.filterAttributeValues(List<CIValue> attributeValues, WhatPossibleValuesHasAttributeContext context) Filters the attribute values proposed by the editor content completion schema manager.filterElements(List<CIElement> elements, WhatElementsCanGoHereContext context) Filters the elements proposed by the editor content completion schema manager.filterElementValues(List<CIValue> elementValues, Context context) Filters the element values proposed by the editor content completion schema manager.Methods inherited from interface ro.sync.ecss.extensions.api.Extension
getDescription
-
Method Details
-
filterElements
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 ifpersonis the currentCIElement, and the list of children contains the elementsnameandaddress, the result of choosing the person entry from the content completion window will be the insertion of the following sequence:
Given this example, the original<person> <name>...</name> <address>...</address> </person>nameCIElement can be replaced by a new one which returns a list with two new CIElements,firstNameandlastName, on theCIElement.getGuessElements()method call. The new generated sequence would be:<person> <name> <firstName>...</firstName> <lastName>...</lastName> </name> <address>...</address> </person>- Parameters:
elements- The list of elements (CIElement) to be filtered.context- TheWhatElementsCanGoHereContextwhere the list of elements is requested. Ifnullthen the given list of content completion elements contains global elements.- Returns:
- The filtered list of
CIElementornullif all elements are rejected by the filter.
-
filterAttributes
List<CIAttribute> filterAttributes(List<CIAttribute> attributes, WhatAttributesCanGoHereContext context) 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.- Parameters:
attributes- The list of attributes (CIAttribute) to be filtered. Can be NULLcontext- TheWhatAttributesCanGoHereContextwhere the list of attributes is requested.- Returns:
- The filtered list of
CIAttributeornullif all attributes are rejected by the filter.
-
filterAttributeValues
List<CIValue> filterAttributeValues(List<CIValue> attributeValues, WhatPossibleValuesHasAttributeContext context) 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.- Parameters:
attributeValues- The list of attribute values (CIValue) to be filtered.context- TheWhatPossibleValuesHasAttributeContextwhere the list of attribute values is requested.- Returns:
- The filtered list of
CIValuerepresenting possible values of the attribute ornullif all values are rejected by the filter.
-
filterElementValues
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.
-