Search in sources :

Example 6 with DecoratedExecutableElement

use of com.webcohesion.enunciate.javac.decorations.element.DecoratedExecutableElement in project enunciate by stoicflame.

the class AccessorFilter method accept.

/**
 * Whether to accept the given member declaration as an accessor.
 *
 * @param element The declaration to filter.
 * @return Whether to accept the given member declaration as an accessor.
 */
public boolean accept(DecoratedElement<?> element) {
    if (context.isIgnored(element)) {
        return false;
    }
    if (element.getAnnotation(JsonProperty.class) != null) {
        // if there's an explicit json property annotation, we'll include it.
        return true;
    }
    if (this.honorJaxb) {
        if (element.getAnnotation(XmlTransient.class) != null) {
            return false;
        }
        for (String annotationName : element.getAnnotations().keySet()) {
            if (annotationName.startsWith("javax.xml.bind.annotation")) {
                // if the property has an explicit annotation, we'll include it.
                return true;
            }
        }
    }
    String name = element.getSimpleName().toString();
    if ("".equals(name)) {
        return false;
    }
    if (this.propertiesToIgnore.contains(name)) {
        return false;
    }
    if (element instanceof PropertyElement) {
        PropertyElement property = ((PropertyElement) element);
        DecoratedExecutableElement getter = property.getGetter();
        if (getter == null) {
            // needs a getter.
            return false;
        }
        if (!isVisible(findGetterVisibility(getter), getter)) {
            return false;
        }
        DecoratedExecutableElement setter = property.getSetter();
        if (setter != null && !isVisible(findSetterVisibility(), setter)) {
            return false;
        }
        return true;
    } else if (element instanceof DecoratedVariableElement) {
        if (!isVisible(findFieldVisibility(), element)) {
            return false;
        }
        if (element.isStatic() || element.isTransient()) {
            return false;
        }
        return true;
    }
    return false;
}
Also used : JsonProperty(org.codehaus.jackson.annotate.JsonProperty) DecoratedVariableElement(com.webcohesion.enunciate.javac.decorations.element.DecoratedVariableElement) XmlTransient(javax.xml.bind.annotation.XmlTransient) DecoratedExecutableElement(com.webcohesion.enunciate.javac.decorations.element.DecoratedExecutableElement) PropertyElement(com.webcohesion.enunciate.javac.decorations.element.PropertyElement)

Aggregations

DecoratedExecutableElement (com.webcohesion.enunciate.javac.decorations.element.DecoratedExecutableElement)6 DecoratedVariableElement (com.webcohesion.enunciate.javac.decorations.element.DecoratedVariableElement)3 PropertyElement (com.webcohesion.enunciate.javac.decorations.element.PropertyElement)3 XmlTransient (javax.xml.bind.annotation.XmlTransient)3 DecoratedTypeElement (com.webcohesion.enunciate.javac.decorations.element.DecoratedTypeElement)2 ExecutableElement (javax.lang.model.element.ExecutableElement)1 TypeElement (javax.lang.model.element.TypeElement)1 VariableElement (javax.lang.model.element.VariableElement)1 JsonProperty (org.codehaus.jackson.annotate.JsonProperty)1