Exemple #1
0
 protected void processAttributeUse(XSDAttributeUse use, Node parentNode)
     throws RepositoryException {
   // Process the attribute declaration ...
   Node attributeDeclaration =
       processAttributeDeclaration(use.getAttributeDeclaration(), parentNode, true);
   if (use.getUse() != null) {
     attributeDeclaration.setProperty(XsdLexicon.USE, use.getUse().getLiteral());
   }
   processNonSchemaAttributes(use, attributeDeclaration);
 }