Package org.jboss.metadata.plugins.repository.visitor

Examples of org.jboss.metadata.plugins.repository.visitor.ChildrenMetaDataRepositoryVisitor


   public Set<ScopeKey> getChildren(ScopeKey key)
   {
      if (key == null)
         return retrievals.keySet();
     
      ChildrenMetaDataRepositoryVisitor visitor = new ChildrenMetaDataRepositoryVisitor(key);
      return matchScopes(visitor);
   }
View Full Code Here


   public Set<ScopeKey> getChildren(ScopeKey key)
   {
      if (key == null)
         return retrievals.keySet();
     
      ChildrenMetaDataRepositoryVisitor visitor = new ChildrenMetaDataRepositoryVisitor(key);
      return matchScopes(visitor);
   }
View Full Code Here

/*     */   public Set<ScopeKey> getChildren(ScopeKey key)
/*     */   {
/*  89 */     if (key == null) {
/*  90 */       return this.retrievals.keySet();
/*     */     }
/*  92 */     ChildrenMetaDataRepositoryVisitor visitor = new ChildrenMetaDataRepositoryVisitor(key);
/*  93 */     return matchScopes(visitor);
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.metadata.plugins.repository.visitor.ChildrenMetaDataRepositoryVisitor

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.