Package com.sun.xml.internal.txw2.annotation

Examples of com.sun.xml.internal.txw2.annotation.XmlElement


/*     */     }
/*     */
/* 180 */     if (nsUri.equals("##default"))
/*     */     {
/* 182 */       Class c = method.getDeclaringClass();
/* 183 */       XmlElement ce = (XmlElement)c.getAnnotation(XmlElement.class);
/* 184 */       if (ce != null) {
/* 185 */         nsUri = ce.ns();
/*     */       }
/*     */
/* 188 */       if (nsUri.equals("##default"))
/*     */       {
/* 190 */         nsUri = getNamespace(c.getPackage());
View Full Code Here


    /*package*/ static QName getTagName( Class<?> c ) {
        String localName="";
        String nsUri="##default";

        XmlElement xe = c.getAnnotation(XmlElement.class);
        if(xe!=null) {
            localName = xe.value();
            nsUri = xe.ns();
        }

        if(localName.length()==0) {
            localName = c.getName();
            int idx = localName.lastIndexOf('.');
View Full Code Here

            }
        }

        XmlAttribute xa = method.getAnnotation(XmlAttribute.class);
        XmlValue xv = method.getAnnotation(XmlValue.class);
        XmlElement xe = method.getAnnotation(XmlElement.class);


        if(xa!=null) {
            if(xv!=null || xe!=null)
                throw new IllegalAnnotationException(method.toString());
View Full Code Here

        }

        if(nsUri.equals("##default")) {
            // look for the annotation on the declaring class
            Class<?> c = method.getDeclaringClass();
            XmlElement ce = c.getAnnotation(XmlElement.class);
            if(ce!=null) {
                nsUri = ce.ns();
            }

            if(nsUri.equals("##default"))
                // then default to the XmlNamespace
                nsUri = getNamespace(c.getPackage());
View Full Code Here

TOP

Related Classes of com.sun.xml.internal.txw2.annotation.XmlElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.