当前位置: 首页>>代码示例>>Java>>正文


Java XmlAccessType.PROPERTY属性代码示例

本文整理汇总了Java中javax.xml.bind.annotation.XmlAccessType.PROPERTY属性的典型用法代码示例。如果您正苦于以下问题:Java XmlAccessType.PROPERTY属性的具体用法?Java XmlAccessType.PROPERTY怎么用?Java XmlAccessType.PROPERTY使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.xml.bind.annotation.XmlAccessType的用法示例。


在下文中一共展示了XmlAccessType.PROPERTY属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isRelevant

/**
 * Checks if the method is public and non-static and that the method is a Getter.
 * Does not allow methods with ignored names.
 * Does also not take methods annotated with {@link XmlTransient}.
 *
 * @param method The method
 * @return {@code true} if the method should be analyzed further
 */
private static boolean isRelevant(final Method method, final XmlAccessType accessType) {
    if (method.isSynthetic() || !isGetter(method))
        return false;

    final boolean propertyIgnored = ignoredFieldNames.contains(extractPropertyName(method.getName()));
    if (propertyIgnored || hasIgnoreAnnotation(method) || isTypeIgnored(method.getReturnType())) {
        return false;
    }

    if (isAnnotationPresent(method, XmlElement.class))
        return true;

    if (accessType == XmlAccessType.PROPERTY)
        return !isAnnotationPresent(method, XmlTransient.class);
    else if (accessType == XmlAccessType.PUBLIC_MEMBER)
        return Modifier.isPublic(method.getModifiers()) && !isAnnotationPresent(method, XmlTransient.class);

    return false;
}
 
开发者ID:sdaschner,项目名称:jaxrs-analyzer,代码行数:27,代码来源:JavaTypeAnalyzer.java

示例2: isFieldAccepted

/**
 * Checks if the field is accepted as a JAXB property.
 */
static boolean isFieldAccepted(Field field, XmlAccessType accessType) {
    // We only accept non static fields which are not marked @XmlTransient
    if (Modifier.isStatic(field.getModifiers()) || field.isAnnotationPresent(XmlTransient.class)) {
        return false;
    }
    if (accessType == XmlAccessType.PUBLIC_MEMBER 
        && !Modifier.isPublic(field.getModifiers())) {
        return false;
    }
    if (field.getAnnotation(XmlJavaTypeAdapter.class) != null) {
        return false;
    }
    if (accessType == XmlAccessType.NONE
        || accessType == XmlAccessType.PROPERTY) {
        return checkJaxbAnnotation(field.getAnnotations());
    } else {
        return true;
    }
}
 
开发者ID:GeeQuery,项目名称:cxf-plus,代码行数:22,代码来源:JAXBContextInitializer.java


注:本文中的javax.xml.bind.annotation.XmlAccessType.PROPERTY属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。