Package org.jboss.resource.metadata

Examples of org.jboss.resource.metadata.DescriptionMetaData


/* 736 */       return null;
/*     */     }
/* 738 */     if (localName.equals("description"))
/*     */     {
/* 740 */       String language = attrs.getValue("xml:lang");
/* 741 */       DescriptionMetaData dmd = null;
/* 742 */       if (language == null)
/* 743 */         dmd = rcpmd.getDescription();
/*     */       else
/* 745 */         dmd = rcpmd.getDescription(language);
/* 746 */       if (dmd == null)
/* 747 */         dmd = new DescriptionMetaData(language);
/* 748 */       rcpmd.addDescription(dmd);
/* 749 */       return dmd;
/*     */     }
/*     */
/* 752 */     throw new IllegalArgumentException("Unknown required config property newChild: nuri=" + namespaceURI + " localName=" + localName + " attrs=" + attrs);
View Full Code Here

TOP

Related Classes of org.jboss.resource.metadata.DescriptionMetaData

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.