Uses of Interface
org.modeshape.common.collection.Problems

Packages that use Problems
org.modeshape.cnd Compact Node Definition (CND) defines JCR node types, property definitions, and child node definitions in a concise and easy-to-read form. 
org.modeshape.common.collection A set of common classes for dealing with collections of other objects. 
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.graph.query The Query API provides a mechanism for building and executing queries. 
org.modeshape.graph.query.process This package defines the QueryProcessor interface, which is responsible for constructing for each query a tree of ProcessingComponent objects that each are responsible for processing a specific aspect of the query and returning the tuples to the parent component. 
org.modeshape.graph.sequencer A sequencer in ModeShape is a component that is able to process information (usually the content of a file, or a property value on a node) and recreate that information as a graph of structured content. 
org.modeshape.jcr The ModeShape implementation of the JCR API. 
org.modeshape.jcr.query.qom   
org.modeshape.repository The components and services that make up ModeShape's lower-level graph engine, which is used within its JCR Engine. 
org.modeshape.sequencer.teiid The classes that make up the JCR Compact Node Definition (CND) file sequencer. 
 

Uses of Problems in org.modeshape.cnd
 

Methods in org.modeshape.cnd with parameters of type Problems
 void CndImporter.importFrom(File file, Problems problems)
          Import the CND content from the supplied stream, placing the content into the importer's destination.
 void CndImporter.importFrom(InputStream stream, Problems problems, String resourceName)
          Import the CND content from the supplied stream, placing the content into the importer's destination.
 void CndImporter.importFrom(String content, Problems problems, String resourceName)
          Import the CND content from the supplied stream, placing the content into the importer's destination.
 

Uses of Problems in org.modeshape.common.collection
 

Classes in org.modeshape.common.collection that implement Problems
 class AbstractProblems
          A list of problems for some execution context.
 class ImmutableProblems
          An immutable wrapper for a mutable Problems.
 class SimpleProblems
          A simple Problems collection.
 class ThreadSafeProblems
          A thread-safe Problems collection.
 

Constructors in org.modeshape.common.collection with parameters of type Problems
ImmutableProblems(Problems delegate)
           
 

Uses of Problems in org.modeshape.graph
 

Constructors in org.modeshape.graph with parameters of type Problems
Graph.GraphQueryContext(Schemata schemata, TypeSystem typeSystem, PlanHints hints, Problems problems, Map<String,Object> variables, Graph.Batch batch)
           
 

Uses of Problems in org.modeshape.graph.query
 

Methods in org.modeshape.graph.query that return Problems
 Problems QueryResults.getProblems()
          Get the problems encountered during execution.
 Problems QueryContext.getProblems()
          Get the problem container used by this query context.
 

Methods in org.modeshape.graph.query with parameters of type Problems
 QueryContext QueryContext.with(Problems problems)
          Obtain a copy of this context, except that the copy uses the supplied problem container.
 

Constructors in org.modeshape.graph.query with parameters of type Problems
QueryContext(Schemata schemata, TypeSystem typeSystem, PlanHints hints, Problems problems)
          Create a new context for query execution.
QueryContext(Schemata schemata, TypeSystem typeSystem, PlanHints hints, Problems problems, Map<String,Object> variables)
          Create a new context for query execution.
 

Uses of Problems in org.modeshape.graph.query.process
 

Methods in org.modeshape.graph.query.process that return Problems
 Problems QueryResults.getProblems()
          Get the problems encountered during execution.
protected  Problems ProcessingComponent.problems()
          Get the container for problems encountered during processing.
 

Constructors in org.modeshape.graph.query.process with parameters of type Problems
QueryResults(QueryResults.Columns columns, QueryResults.Statistics statistics, List<Object[]> tuples, Problems problems, String plan)
          Create a results object for the supplied context, command, and result columns and with the supplied tuples.
QueryResults(QueryResults.Columns columns, QueryResults.Statistics statistics, Problems problems)
          Create an empty QueryResults object for the supplied context, command, and result columns.
 

Uses of Problems in org.modeshape.graph.sequencer
 

Methods in org.modeshape.graph.sequencer that return Problems
 Problems StreamSequencerContext.getProblems()
          Get an interface that can be used to record various problems, warnings, and errors that are not extreme enough to warrant throwing exceptions.
 

Constructors in org.modeshape.graph.sequencer with parameters of type Problems
StreamSequencerContext(ExecutionContext context, Path inputPath, Set<Property> inputProperties, String mimeType, Problems problems)
           
 

Uses of Problems in org.modeshape.jcr
 

Methods in org.modeshape.jcr that return Problems
 Problems JackrabbitXmlNodeTypeReader.getProblems()
          Get the problems where warnings and error messages were recorded by this factory.
 Problems CndNodeTypeReader.getProblems()
          Get the problems where warnings and error messages were recorded by this factory.
 

Methods in org.modeshape.jcr with parameters of type Problems
 void JackrabbitXmlNodeTypeReader.XmlImporter.importFrom(File file, Problems problems)
          Import the CND content from the supplied stream, placing the content into the importer's destination.
 void JackrabbitXmlNodeTypeReader.XmlImporter.importFrom(InputStream stream, Problems problems, String resourceName)
          Import the CND content from the supplied stream, placing the content into the importer's destination.
 void JackrabbitXmlNodeTypeReader.XmlImporter.importFrom(String content, Problems problems, String resourceName)
          Import the CND content from the supplied stream, placing the content into the importer's destination.
protected  void JackrabbitXmlNodeTypeReader.XmlImporter.parse(InputStream content, Problems problems, String resourceName)
          Parse the XML content.
 

Uses of Problems in org.modeshape.jcr.query.qom
 

Methods in org.modeshape.jcr.query.qom with parameters of type Problems
protected  void JcrAbstractQuery.checkForProblems(Problems problems)
           
 

Uses of Problems in org.modeshape.repository
 

Methods in org.modeshape.repository that return Problems
 Problems ModeShapeEngine.getProblems()
          Get the problems that were encountered when setting up this engine from the configuration.
 Problems ModeShapeConfiguration.getProblems()
          Get the problems (if any) that are associated with this configuration.
 

Methods in org.modeshape.repository with parameters of type Problems
protected  Object RepositoryService.createInstanceFromProperties(Subgraph subgraph, Location location, Problems problems, boolean mustHaveClassName)
          Instantiate the Object described by the supplied properties.
protected  RepositorySource RepositoryService.createRepositorySource(Subgraph subgraph, Location location, Problems problems)
          Instantiate the RepositorySource described by the supplied properties.
 

Constructors in org.modeshape.repository with parameters of type Problems
ModeShapeEngine.ConfigurationScanner(Problems problems, ExecutionContext context, ModeShapeConfiguration.ConfigurationDefinition configurationRepository)
           
RepositoryService(RepositorySource configurationSource, String configurationWorkspaceName, Path pathToConfigurationRoot, ExecutionContext context, ObservationBus observationBus, Problems problems)
          Create a service instance, reading the configuration describing new RepositorySource instances from the supplied configuration repository.
 

Uses of Problems in org.modeshape.sequencer.teiid
 

Methods in org.modeshape.sequencer.teiid that return Problems
 Problems CndFromEcore.getProblems()
           
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.