Package org.jboss.metadata.web.jboss

Examples of org.jboss.metadata.web.jboss.JBossAnnotationsMetaData


                    } else {
                        throw duplicateNamedElement(reader, Element.VIRTUAL_HOST.toString());
                    }
                    break;
                case ANNOTATION:
                    JBossAnnotationsMetaData annotations = wmd.getAnnotations();
                    if (annotations == null) {
                        annotations = new JBossAnnotationsMetaData();
                        wmd.setAnnotations(annotations);
                    }
                    annotations.add(JBossAnnotationMetaDataParser.parse(reader));
                    break;
                default: throw unexpectedElement(reader);
            }
        }
View Full Code Here

TOP

Related Classes of org.jboss.metadata.web.jboss.JBossAnnotationsMetaData

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.