JBoss MetaData Repository 2.2.0.SP1

Uses of Class
org.jboss.metadata.spi.scope.ScopeKey

Packages that use ScopeKey
org.jboss.metadata.plugins.context   
org.jboss.metadata.plugins.loader   
org.jboss.metadata.plugins.loader.memory   
org.jboss.metadata.plugins.loader.thread   
org.jboss.metadata.plugins.repository   
org.jboss.metadata.plugins.repository.basic   
org.jboss.metadata.plugins.repository.visitor   
org.jboss.metadata.spi.repository   
org.jboss.metadata.spi.repository.visitor   
org.jboss.metadata.spi.retrieval   
org.jboss.metadata.spi.scope   
 

Uses of ScopeKey in org.jboss.metadata.plugins.context
 

Methods in org.jboss.metadata.plugins.context that return ScopeKey
 ScopeKey AbstractMetaDataContext.getScope()
           
 

Uses of ScopeKey in org.jboss.metadata.plugins.loader
 

Methods in org.jboss.metadata.plugins.loader that return ScopeKey
 ScopeKey AbstractMetaDataLoader.getScope()
           
 

Constructors in org.jboss.metadata.plugins.loader with parameters of type ScopeKey
AbstractMetaDataLoader(ScopeKey key)
          Create a new AbstractMetaDataLoader.
AbstractMutableComponentMetaDataLoader(ScopeKey key)
          Create a new AbstractComponentMutableMetaDataLoader.
AbstractMutableComponentMetaDataLoader(ScopeKey key, boolean restricted)
          Create a new AbstractComponentMetaDataLoader.
AbstractMutableMetaDataLoader(ScopeKey key)
          Create a new AbstractMutableMetaDataLoader.
AbstractMutableMetaDataLoader(ScopeKey key, boolean restricted)
          Create a new AbstractMutableMetaDataLoader.
BasicMetaDataLoader(ScopeKey key)
          Create a new BasicMetaDataLoader.
 

Uses of ScopeKey in org.jboss.metadata.plugins.loader.memory
 

Constructors in org.jboss.metadata.plugins.loader.memory with parameters of type ScopeKey
MemoryMetaDataLoader(ScopeKey scope)
          Create a new MemoryMetaDataLoader.
MemoryMetaDataLoader(ScopeKey scope, boolean cachable, boolean restricted)
          Create a new MemoryMetaDataLoader.
 

Uses of ScopeKey in org.jboss.metadata.plugins.loader.thread
 

Methods in org.jboss.metadata.plugins.loader.thread that return ScopeKey
 ScopeKey ThreadLocalMetaDataLoader.getScope()
           
 

Uses of ScopeKey in org.jboss.metadata.plugins.repository
 

Methods in org.jboss.metadata.plugins.repository with parameters of type ScopeKey
 MetaData AbstractMetaDataRepository.getMetaData(ScopeKey key)
           
 

Uses of ScopeKey in org.jboss.metadata.plugins.repository.basic
 

Methods in org.jboss.metadata.plugins.repository.basic that return types with arguments of type ScopeKey
 Set<ScopeKey> BasicMetaDataRepository.getChildren(ScopeKey key)
           
 Set<ScopeKey> BasicMetaDataRepository.matchScopes(MetaDataRepositoryVisitor visitor)
           
 

Methods in org.jboss.metadata.plugins.repository.basic with parameters of type ScopeKey
 Set<ScopeKey> BasicMetaDataRepository.getChildren(ScopeKey key)
           
 MetaDataRetrieval BasicMetaDataRepository.getMetaDataRetrieval(ScopeKey key)
           
 MetaDataRetrieval BasicMetaDataRepository.removeMetaDataRetrieval(ScopeKey key)
           
 

Uses of ScopeKey in org.jboss.metadata.plugins.repository.visitor
 

Methods in org.jboss.metadata.plugins.repository.visitor with parameters of type ScopeKey
 boolean FuzzyMetaDataRepositoryVisitor.matchScope(MetaDataRepository repository, ScopeKey key)
           
 boolean ChildrenMetaDataRepositoryVisitor.matchScope(MetaDataRepository repository, ScopeKey key)
           
 

Constructors in org.jboss.metadata.plugins.repository.visitor with parameters of type ScopeKey
ChildrenMetaDataRepositoryVisitor(ScopeKey parent)
          Create a new ChildrenMetaDataRepositoryVisitor.
FuzzyMetaDataRepositoryVisitor(ScopeKey matchKey)
          Create a new FuzzyMetaDataRepositoryVisitor.
 

Uses of ScopeKey in org.jboss.metadata.spi.repository
 

Methods in org.jboss.metadata.spi.repository that return types with arguments of type ScopeKey
 Set<ScopeKey> MetaDataRepository.getChildren(ScopeKey key)
          Get the children of this scope
 Set<ScopeKey> MetaDataRepository.matchScopes(MetaDataRepositoryVisitor visitor)
          Visit each node
 

Methods in org.jboss.metadata.spi.repository with parameters of type ScopeKey
 Set<ScopeKey> MetaDataRepository.getChildren(ScopeKey key)
          Get the children of this scope
 MetaData MetaDataRepository.getMetaData(ScopeKey key)
          Get the meta data for a scope key
 MetaDataRetrieval MetaDataRepository.getMetaDataRetrieval(ScopeKey key)
          Get the meta data retrieval for a scope key
 MetaDataRetrieval MutableMetaDataRepository.removeMetaDataRetrieval(ScopeKey key)
          Remove a meta data retrieval for the given scope
 

Uses of ScopeKey in org.jboss.metadata.spi.repository.visitor
 

Methods in org.jboss.metadata.spi.repository.visitor with parameters of type ScopeKey
 boolean MetaDataRepositoryVisitor.matchScope(MetaDataRepository repository, ScopeKey key)
          Decide whether the scope matches
 

Uses of ScopeKey in org.jboss.metadata.spi.retrieval
 

Methods in org.jboss.metadata.spi.retrieval that return ScopeKey
 ScopeKey MetaDataRetrieval.getScope()
          Return the scope key
 

Uses of ScopeKey in org.jboss.metadata.spi.scope
 

Subclasses of ScopeKey in org.jboss.metadata.spi.scope
 class UnmodifiableScopeKey
          The UnmodifiableScopeKey represents a path which is made up of the path entries.
 

Fields in org.jboss.metadata.spi.scope declared as ScopeKey
static ScopeKey ScopeKey.DEFAULT_SCOPE
          The default scope
 

Methods in org.jboss.metadata.spi.scope that return ScopeKey
 ScopeKey ScopeKey.clone()
          Clone a ScopeKey instance.
 ScopeKey UnmodifiableScopeKey.clone()
          clone will always return a frozen copy of the UnmodifiableScopeKey.
 ScopeKey ScopeKeyFactory.create(T annotation)
          Create ScopeKey from scope annotation instance
 ScopeKey ScopeKey.getOptimizedKey()
          The returned ScopeKey is immutable and optimized for use at runtime.
 ScopeKey UnmodifiableScopeKey.getOptimizedKey()
           
 ScopeKey ScopeKey.getParent()
          Get the parent scope key
 ScopeKey UnmodifiableScopeKey.getParent()
          Get the parent scope key
 

Methods in org.jboss.metadata.spi.scope with parameters of type ScopeKey
 boolean ScopeKey.isParent(ScopeKey key)
          Is this parent of key parameter.
 boolean UnmodifiableScopeKey.isParent(ScopeKey key)
          Is this parent of key parameter.
 

Constructors in org.jboss.metadata.spi.scope with parameters of type ScopeKey
UnmodifiableScopeKey(ScopeKey key)
           
 


JBoss MetaData Repository 2.2.0.SP1

Copyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.