| java.lang.Object org.apache.commons.betwixt.strategy.ValueSuppressionStrategy
suppressAttribute | abstract public boolean suppressAttribute(AttributeDescriptor attributeDescriptor, String value)(Code) | | Should the given attribute value be suppressed?
Parameters: attributeDescriptor - AttributeDescriptor describing the attribute, not null Parameters: value - Object value, possibly null true if the attribute should not be written for the given value |
suppressElement | public boolean suppressElement(ElementDescriptor element, String namespaceUri, String localName, String qualifiedName, Object value)(Code) | |
Should be given element value be suppressed?
Note: to preserve binary compatibility,
this method contains an implementation that returns false.
Subclasses should not rely upon this behaviour as (in future)
this may be made abstract.
Parameters: element - ElementDescriptor describing the element, not null Parameters: namespaceUri - the namespace of the element to be written Parameters: localName - the local name of the element to be written Parameters: qualifiedName - the qualified name of the element to be written Parameters: value - Object value, possibly null true if the element should be suppressed (in other words, not written)for the given value since: 0.8 |
|
|