Uses of Class
net.ontopia.topicmaps.query.core.InvalidQueryException

Packages that use InvalidQueryException
net.ontopia.topicmaps.nav2.portlets.pojos   
net.ontopia.topicmaps.nav2.servlets This package contains the servlet classes used by Ontopia's navigator framework. 
net.ontopia.topicmaps.nav2.utils Provides utility classes for the Navigator Tag Libraries and Framework. 
net.ontopia.topicmaps.query.core Contains the interfaces through which interaction with query processors, queries, and query results are done. 
net.ontopia.topicmaps.query.impl.basic Contains the in-memory implementation of the query language. 
net.ontopia.topicmaps.query.impl.rdbms Contains the rdbms implementation of the query language. 
net.ontopia.topicmaps.query.impl.utils Code shared between query implementations. 
net.ontopia.topicmaps.query.parser Contains the code that parses tolog queries. 
net.ontopia.topicmaps.query.spi Provides a set of service provider interfaces for adding new predicates to the tolog query language. 
net.ontopia.topicmaps.query.utils This package provides query utility classes. 
net.ontopia.topicmaps.utils This package provides topic map utility classes, which are a toolkit for working with the topic map model provided by the core interfaces. 
net.ontopia.topicmaps.utils.tmrap   
ontopoly.conversion   
ontopoly.model   
 

Uses of InvalidQueryException in net.ontopia.topicmaps.nav2.portlets.pojos
 

Methods in net.ontopia.topicmaps.nav2.portlets.pojos that throw InvalidQueryException
 java.util.Collection TMRAP.query(java.util.Collection psis)
          PUBLIC: Sends a query, returning a model of the result.
 java.util.Collection TMRAP.query(TopicIF topic)
          PUBLIC: Sends a query, returning a model of the result.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.nav2.servlets
 

Methods in net.ontopia.topicmaps.nav2.servlets that throw InvalidQueryException
 void TreeWidget.loadRules(java.io.Reader rulereader)
          Deprecated. EXPERIMENTAL: We really don't recommend that you use this method.
 void TreeWidget.run(javax.servlet.jsp.PageContext ctxt, java.io.Writer writer)
          Deprecated. EXPERIMENTAL: Runs the widget, producing the output.
 

Constructors in net.ontopia.topicmaps.nav2.servlets that throw InvalidQueryException
TreeWidget(TopicMapIF topicmap, java.lang.String query, java.lang.String topquery, java.lang.String ownpage, java.lang.String nodepage)
          Deprecated. Sets up the widget ready for use.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.nav2.utils
 

Methods in net.ontopia.topicmaps.nav2.utils that throw InvalidQueryException
protected  TopicTreeNode TreeWidget.buildTree()
           
protected  QueryResultIF TreeWidget.getChildren(TopicIF topic)
           
protected  void TreeWidget.parseQueries()
           
protected  void TreeWidget.process(TopicTreeNode parent)
           
 void TreeWidget.run(javax.servlet.http.HttpServletRequest request, java.io.Writer writer)
          PUBLIC: Runs the widget, producing the output.
 void DynamicTreeWidget.run(javax.servlet.http.HttpServletRequest request, java.io.Writer writer)
          PUBLIC: Runs the widget, producing the output.
 void TreeWidget.run(javax.servlet.jsp.PageContext ctxt, java.io.Writer writer)
          PUBLIC: Runs the widget, producing the output.
 void DynamicTreeWidget.run(javax.servlet.jsp.PageContext ctxt, java.io.Writer writer)
          PUBLIC: Runs the widget, producing the output.
 

Constructors in net.ontopia.topicmaps.nav2.utils that throw InvalidQueryException
DynamicTreeWidget(TopicMapIF topicmap, java.lang.String tablequery, java.lang.String ownpage, java.lang.String nodepage)
          PUBLIC: Sets up the widget ready for use.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.core
 

Subclasses of InvalidQueryException in net.ontopia.topicmaps.query.core
 class BadObjectReferenceException
          PUBLIC: This exception is used to indicate that there is something wrong with the query, whether syntactically or semantically.
 

Methods in net.ontopia.topicmaps.query.core that throw InvalidQueryException
 QueryResultIF ParsedQueryIF.execute()
          PUBLIC: Executes the query, returning the query result.
 QueryResultIF ParsedQueryIF.execute(java.util.Map<java.lang.String,?> arguments)
          PUBLIC: Executes the query binding the parameters in the query to the values given in the 'arguments' map, returning the query result.
 QueryResultIF QueryProcessorIF.execute(java.lang.String query)
          PUBLIC: Parses and executes the query, returning the results.
 QueryResultIF QueryProcessorIF.execute(java.lang.String query, DeclarationContextIF context)
          PUBLIC: Parses and executes the query in the given context, returning the results.
 QueryResultIF QueryProcessorIF.execute(java.lang.String query, java.util.Map<java.lang.String,?> arguments)
          PUBLIC: Parses and executes the query binding the parameters in the query to the values given in the 'arguments' map, returning the results.
 QueryResultIF QueryProcessorIF.execute(java.lang.String query, java.util.Map<java.lang.String,?> arguments, DeclarationContextIF context)
          PUBLIC: Parses and executes the query in the given context binding the parameters in the query to the values given in the 'arguments' map, returning the results.
 void QueryProcessorIF.load(java.io.Reader ruleset)
          Deprecated. use rule import declaration instead, or contexts
 void QueryProcessorIF.load(java.lang.String ruleset)
          Deprecated. use rule import declaration instead, or contexts
 ParsedQueryIF QueryProcessorIF.parse(java.lang.String query)
          PUBLIC: Parses the query, returning an object representing the result.
 ParsedQueryIF QueryProcessorIF.parse(java.lang.String query, DeclarationContextIF context)
          PUBLIC: Parses the query in the given context, returning an object representing the result.
 ParsedModificationStatementIF QueryProcessorIF.parseUpdate(java.lang.String statement)
          PUBLIC: Parses the update statement, returning an object representing the result.
 ParsedModificationStatementIF QueryProcessorIF.parseUpdate(java.lang.String statement, DeclarationContextIF context)
          PUBLIC: Parses the update statement in the given context, returning an object representing the result.
 int ParsedModificationStatementIF.update()
          PUBLIC: Runs the statement, returning the number of rows modified.
 int ParsedModificationStatementIF.update(java.util.Map<java.lang.String,?> params)
          PUBLIC: Runs the statement with the given parameters, returning the number of rows modified.
 int QueryProcessorIF.update(java.lang.String query)
          PUBLIC: Runs the update statement, returning the number of modified objects.
 int QueryProcessorIF.update(java.lang.String query, DeclarationContextIF context)
          PUBLIC: Runs the update statement in the given declaration context, returning the number of modified objects.
 int QueryProcessorIF.update(java.lang.String query, java.util.Map<java.lang.String,?> arguments)
          PUBLIC: Runs the update statement with the given parameters, returning the number of modified objects.
 int QueryProcessorIF.update(java.lang.String query, java.util.Map<java.lang.String,?> arguments, DeclarationContextIF context)
          PUBLIC: Runs the update statement in the given declaration context with the given parameters, returning the number of modified objects.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.impl.basic
 

Methods in net.ontopia.topicmaps.query.impl.basic that throw InvalidQueryException
 QueryResultIF ParsedQuery.execute()
           
 QueryResultIF ParsedQuery.execute(java.util.Map<java.lang.String,?> arguments)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query, DeclarationContextIF context)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query, java.util.Map arguments)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query, java.util.Map arguments, DeclarationContextIF context)
           
 QueryResultIF QueryProcessor.execute(TologQuery query)
           
 QueryResultIF QueryProcessor.execute(TologQuery query, java.util.Map arguments)
           
static QueryMatches PredicateUtils.filter(QueryMatches matches, int ix1, int ix2, java.lang.Class class1, java.lang.Class class2, int operation)
           
protected  net.ontopia.topicmaps.query.impl.basic.DynamicAssociationPredicate.ArgumentPair[] DynamicAssociationPredicate.getBoundArguments(QueryMatches matches, java.lang.Object[] arguments, int boundarg)
           
static NumbersModule.NumberSupport NumbersModule.NumberSupport.getHighestPrecision(java.lang.Number[] values)
           
 java.lang.String RulePredicate.getSignature()
           
 int[][] QueryMatches.getTranslationSpec(java.lang.Object[] intarguments, QueryMatches extmatches, java.lang.Object[] extarguments)
          INTERNAL: Computes the translation specification array, which gives the connection between this and the other match table.
protected  net.ontopia.topicmaps.query.impl.basic.DynamicAssociationPredicate.ArgumentPair[] DynamicAssociationPredicate.getUnboundArguments(QueryMatches matches, java.lang.Object[] arguments)
           
 void QueryProcessor.load(java.io.Reader ruleset)
           
 void QueryProcessor.load(java.lang.String ruleset)
           
static QueryMatches PredicateUtils.objectToMany(QueryMatches matches, int fromix, int toix, java.lang.Class fromclass, int operation, IndexIF index)
           
static QueryMatches PredicateUtils.objectToMany(QueryMatches matches, int fromix, int toix, java.lang.Class fromclass, int operation, IndexIF index1, IndexIF index2)
           
static QueryMatches PredicateUtils.objectToOne(QueryMatches matches, int fromix, int toix, java.lang.Class fromclass, int operation)
           
 ParsedQueryIF QueryProcessor.parse(java.lang.String query)
           
 ParsedQueryIF QueryProcessor.parse(java.lang.String query, DeclarationContextIF context)
           
protected  TologQuery QueryProcessor.parseQuery(java.lang.String query, DeclarationContextIF context)
           
 ParsedModificationStatementIF QueryProcessor.parseUpdate(java.lang.String statement)
           
 ParsedModificationStatementIF QueryProcessor.parseUpdate(java.lang.String statement, DeclarationContextIF context)
           
protected  ModificationStatement QueryProcessor.parseUpdateStatement(java.lang.String statement, DeclarationContextIF ctx)
           
protected  int QueryProcessor.runUpdate(ModificationStatement statement, java.util.Map<java.lang.String,?> params)
           
static QueryMatches AbstractQueryProcessor.satisfy(java.util.List clauses, QueryMatches result)
          INTERNAL: Takes the query parameters and produces the complete list of matches.
 QueryMatches VariantPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ValuePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ValueLikePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches TypePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches TopicPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches TopicNamePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches TopicMapPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches SubjectLocatorPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches SubjectIdentifierPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches StringModule.StartsWithPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches StringModule.EndsWithPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ScopePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches RulePredicate.satisfy(QueryMatches extmatches, java.lang.Object[] extarguments)
           
 QueryMatches RolePlayerPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ResourcePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches RemoveDuplicatesPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ReifiesPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches OccurrencePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ObjectIdPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches NotEqualsPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches NamePredicate.satisfy(QueryMatches result, java.lang.Object[] arguments)
           
 QueryMatches LessThanPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches LessThanEqualsPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches JavaSearcherPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches ItemIdentifierPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches InPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches GreaterThanPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches GreaterThanEqualsPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches EqualsPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches DynamicOccurrencePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches DynamicFailurePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches DynamicAssociationPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches DatatypePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches CoalescePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches BasicPredicateIF.satisfy(QueryMatches result, java.lang.Object[] arguments)
           
 QueryMatches BaseLocatorPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches AssociationRolePredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches AssociationPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 QueryMatches AbstractInstanceOfPredicate.satisfy(QueryMatches result, java.lang.Object[] arguments)
           
 int QueryProcessor.update(java.lang.String query)
           
 int QueryProcessor.update(java.lang.String query, DeclarationContextIF context)
           
 int QueryProcessor.update(java.lang.String query, java.util.Map<java.lang.String,?> params)
           
 int QueryProcessor.update(java.lang.String query, java.util.Map<java.lang.String,?> params, DeclarationContextIF context)
           
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.impl.rdbms
 

Methods in net.ontopia.topicmaps.query.impl.rdbms that throw InvalidQueryException
 boolean VariantPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ValuePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ValueLikePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean TypePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean TopicPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean TopicNamePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean TopicMapPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean SubjectLocatorPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean SubjectIdentifierPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ScopePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean RulePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean RolePlayerPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ResourcePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ReifiesPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean OccurrencePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ObjectIdPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean NotEqualsPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean NamePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean LessThanPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean LessThanEqualsPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean JDOPredicateIF.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
          INTERNAL: Registers JDOExpressionsIF for this predicate with the query builder.
 boolean JDOBasicPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean ItemIdentifierPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean InstanceOfPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean InPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean GreaterThanPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean GreaterThanEqualsPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean EqualsPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean DynamicOccurrencePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean DynamicFailurePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean DynamicAssociationPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean DirectInstanceOfPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean DatatypePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean CoalescePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean BaseLocatorPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean AssociationRolePredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
 boolean AssociationPredicate.buildQuery(QueryBuilder builder, java.util.List expressions, java.util.List arguments)
           
protected  net.ontopia.topicmaps.query.impl.rdbms.ParsedQuery.QueryContext ParsedQuery.compile(QueryBuilder builder, java.util.List clauses)
           
protected  void ParsedQuery.compileQuery(QueryBuilder builder, TologQuery query)
           
 QueryResultIF ParsedQuery.execute()
           
 QueryResultIF ParsedQuery.execute(java.util.Map arguments)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query, DeclarationContextIF context)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query, java.util.Map arguments)
           
 QueryResultIF QueryProcessor.execute(java.lang.String query, java.util.Map arguments, DeclarationContextIF context)
           
 java.lang.String JDOBasicPredicate.getSignature()
           
 void QueryProcessor.load(java.io.Reader ruleset)
           
 void QueryProcessor.load(java.lang.String ruleset)
           
protected  JDOQuery ParsedQuery.makeJDOQuery(QueryBuilder builder, net.ontopia.topicmaps.query.impl.rdbms.ParsedQuery.QueryContext qcontext, boolean aggfunc, boolean orderby)
           
 ParsedQueryIF QueryProcessor.parse(java.lang.String query)
           
 ParsedQueryIF QueryProcessor.parse(java.lang.String query, DeclarationContextIF context)
           
protected  ParsedQuery QueryProcessor.parseQuery(java.lang.String query, DeclarationContextIF context)
           
 ParsedModificationStatementIF QueryProcessor.parseUpdate(java.lang.String statement)
           
 ParsedModificationStatementIF QueryProcessor.parseUpdate(java.lang.String statement, DeclarationContextIF context)
           
 QueryMatches QueryComponentIF.satisfy(QueryMatches matches, java.util.Map arguments)
          INTERNAL: Processes the specified QueryMatches instance and produces a new QueryMatches instance based on information in the input instance.
 QueryMatches JDOQueryComponent.satisfy(QueryMatches matches, java.util.Map arguments)
           
 QueryMatches BasicSortComponent.satisfy(QueryMatches matches, java.util.Map arguments)
           
 QueryMatches BasicReduceComponent.satisfy(QueryMatches matches, java.util.Map arguments)
           
 QueryMatches BasicQueryComponent.satisfy(QueryMatches matches, java.util.Map arguments)
           
 QueryMatches BasicCountComponent.satisfy(QueryMatches matches, java.util.Map arguments)
           
 QueryMatches JDOBasicPredicate.satisfy(QueryMatches result, java.lang.Object[] arguments)
           
 int QueryProcessor.update(java.lang.String query, DeclarationContextIF context)
           
 int QueryProcessor.update(java.lang.String query, java.util.Map<java.lang.String,?> arguments)
           
 int QueryProcessor.update(java.lang.String query, java.util.Map<java.lang.String,?> arguments, DeclarationContextIF context)
           
 

Constructors in net.ontopia.topicmaps.query.impl.rdbms that throw InvalidQueryException
BasicQueryComponent(TologQuery query, java.util.List clauses, QueryProcessor qproc)
           
ParsedQuery(QueryProcessor rprocessor, QueryProcessor bprocessor, TologQuery query)
           
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.impl.utils
 

Methods in net.ontopia.topicmaps.query.impl.utils that throw InvalidQueryException
 void BindingContext.addArgumentTypes(java.lang.Object argument, java.lang.Class[] types, PredicateIF predicate)
           
static void QueryAnalyzer.analyzeTypes(java.util.List clauses, BindingContext bc)
           
static BindingContext QueryAnalyzer.analyzeTypes(java.util.List clauses, boolean strict)
           
static BindingContext QueryAnalyzer.analyzeTypes(TologQuery query)
           
 QueryResultIF QueryExecuterIF.execute(TologQuery query)
          INTERNAL: Executes the query, returning the results.
 java.lang.String QueryOptimizer.PumpPredicate.getSignature()
           
 java.lang.String HierarchyWalkerRulePredicate.getSignature()
           
static PredicateSignature PredicateSignature.getSignature(PredicateIF predicate)
           
 void BindingContext.mergeIntersect(BindingContext bc)
           
protected  java.util.Map BindingContext.mergeTypeMapsIntersect(java.util.Map map1, java.util.Map map2, boolean variables)
           
 java.util.List QueryOptimizerIF.optimize(java.util.List clauses, QueryContext context)
           
 java.util.List QueryOptimizer.optimize(java.util.List clauses, QueryContext context)
           
 java.util.List QueryOptimizer.AbstractQueryOptimizer.optimize(java.util.List clauses, QueryContext context)
           
 java.util.List QueryOptimizer.TypeConflictResolver.optimize(java.util.List clauses, QueryContext context)
           
 ParsedRule QueryOptimizer.optimize(ParsedRule rule)
           
 PredicateClause QueryOptimizerIF.optimize(PredicateClause clause, QueryContext context)
           
 PredicateClause QueryOptimizer.AbstractQueryOptimizer.optimize(PredicateClause clause, QueryContext context)
           
 TologQuery QueryOptimizer.optimize(TologQuery query)
           
 void QueryOptimizerIF.optimize(TologQuery query, QueryContext context)
           
 void QueryOptimizer.AbstractQueryOptimizer.optimize(TologQuery query, QueryContext context)
           
 QueryMatches QueryOptimizer.PumpPredicate.satisfy(QueryMatches input, java.lang.Object[] arguments)
           
 QueryMatches HierarchyWalkerRulePredicate.satisfy(QueryMatches extmatches, java.lang.Object[] extarguments)
           
 void PredicateSignature.validateArguments(java.lang.Object[] args, java.lang.String predicate, boolean strict)
          Validates the arguments to this predicate.
 void PredicateSignature.verifyBound(QueryMatches matches, java.lang.Object[] arguments, PredicateIF predicate)
          INTERNAL: Verifies that arguments which are required to be bound actually are bound.
static void QueryAnalyzer.verifyParameters(TologQuery query, java.util.Map arguments)
          Verifies that all used parameters are specified and that they are of the correct types.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.parser
 

Methods in net.ontopia.topicmaps.query.parser that throw InvalidQueryException
abstract  void TologStatement.close()
           
 void TologQuery.close()
           
 void ParsedRule.close()
          Some checks can only be performed when we know that we have parsed the entire rule.
 void ModificationStatement.close()
           
protected  int ModificationFunctionStatement.doFunctionUpdates(QueryMatches matches)
           
protected  int UpdateStatement.doLitListDeletes(boolean strict, java.util.Map arguments)
           
protected abstract  int ModificationFunctionStatement.doLitListDeletes(boolean strict, java.util.Map arguments)
           
protected  int DeleteStatement.doLitListDeletes(boolean strict, java.util.Map arguments)
           
abstract  int ModificationStatement.doStaticUpdates(TopicMapIF topicmap, java.util.Map arguments)
           
 int ModificationFunctionStatement.doStaticUpdates(TopicMapIF topicmap, java.util.Map arguments)
           
 int MergeStatement.doStaticUpdates(TopicMapIF topicmap, java.util.Map arguments)
           
 int InsertStatement.doStaticUpdates(TopicMapIF topicmap, java.util.Map arguments)
           
 int UpdateStatement.doUpdates(QueryMatches matches)
           
abstract  int ModificationStatement.doUpdates(QueryMatches matches)
           
 int MergeStatement.doUpdates(QueryMatches matches)
           
 int InsertStatement.doUpdates(QueryMatches matches)
           
 int DeleteStatement.doUpdates(QueryMatches matches)
           
 java.lang.Object TologQuery.getArgument(java.lang.String name)
           
 java.lang.String PredicateIF.getSignature()
          INTERNAL: Returns a string representing the signature of the predicate.
protected static java.lang.Object ModificationStatement.getValue(java.lang.Object obj, java.util.Map arguments)
           
 void TologParser.load(java.io.Reader reader)
           
 void TologParser.load(java.lang.String ruleset)
           
protected static net.ontopia.topicmaps.query.parser.ModificationFunctionStatement.ModificationFunctionIF ModificationFunctionStatement.makeFunction(java.lang.String name)
           
 ParseContextIF TologParser.parseDeclarations(java.lang.String decls)
           
 TologQuery TologParser.parseQuery(java.io.Reader queryReader)
          Returns a parsed SELECT statement.
 TologQuery TologParser.parseQuery(java.lang.String query)
          Returns a parsed SELECT statement.
 TologStatement TologParser.parseStatement(java.lang.String query)
          Returns a parsed INSERT/UPDATE/MERGE/DELETE statement.
 void InsertStatement.setCTMPart(java.lang.String ctm, ParseContextIF context)
           
 void TologQuery.setOffset(int offset)
           
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.spi
 

Methods in net.ontopia.topicmaps.query.spi that throw InvalidQueryException
abstract  boolean FilterPredicate.filter(java.lang.Object[] row)
          EXPERIMENTAL: Returns true if the given row objects should be included in the result.
 boolean EqualsFilter.filter(java.lang.Object[] objects)
           
abstract  void ProcessPredicate.process(java.lang.Object[] row, boolean[] boundparams, ResultIF result)
          EXPERIMENTAL: Processes the input row and pushes result rows to the result.
 QueryMatches ProcessPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
abstract  QueryMatches JavaPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
          INTERNAL: Internal machinery.
 QueryMatches FilterPredicate.satisfy(QueryMatches matches, java.lang.Object[] arguments)
           
 

Uses of InvalidQueryException in net.ontopia.topicmaps.query.utils
 

Methods in net.ontopia.topicmaps.query.utils that throw InvalidQueryException
static DeclarationContextIF QueryUtils.parseDeclarations(TopicMapIF topicmap, java.lang.String declarations)
          PUBLIC: Parses a set of tolog declarations and returns an object representing the resulting declaration context.
static DeclarationContextIF QueryUtils.parseDeclarations(TopicMapIF topicmap, java.lang.String declarations, DeclarationContextIF context)
          PUBLIC: Parses a set of tolog declarations in an existing context, and returns an object representing the resulting nested declaration context.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.utils
 

Methods in net.ontopia.topicmaps.utils that throw InvalidQueryException
static void TopicMapSynchronizer.update(TopicMapIF target, java.lang.String ttopicq, DeciderIF tchard, TopicMapIF source, java.lang.String stopicq, DeciderIF schard)
          PUBLIC: Updates the target topic map from the source topic map, synchronizing the selected topics in the target (ttopicq) with the selected topics in the source (stopicq) using the deciders to filter topic characteristics to synchronize.
 

Uses of InvalidQueryException in net.ontopia.topicmaps.utils.tmrap
 

Methods in net.ontopia.topicmaps.utils.tmrap that throw InvalidQueryException
static int TMRAPImplementation.tologUpdate(NavigatorApplicationIF navapp, java.lang.String tmid, java.lang.String statement)
           
 

Uses of InvalidQueryException in ontopoly.conversion
 

Methods in ontopoly.conversion that throw InvalidQueryException
protected  int UpgradeBase.doUpdate(java.lang.String update)
          Runs a tolog update statement to modify the topic map.
protected static void UpgradeBase.removeAssociations(java.lang.String atype, java.lang.String[] rtypes, QueryProcessorIF qp, DeclarationContextIF dc)
           
protected static void UpgradeBase.removeObjects(TopicMapIF topicMap, DeclarationContextIF dc, java.lang.String removalQuery)
           
protected abstract  void UpgradeBase.transform()
           
protected  void Upgrade_2_1.transform()
           
protected  void Upgrade_2_0.transform()
           
protected  void Upgrade_1_9.transform()
           
protected  void Upgrade_1_4.transform()
           
protected  void Upgrade_1_3.transform()
           
protected  void Upgrade_1_2.transform()
           
protected  void Upgrade_1_1.transform()
           
protected static void UpgradeBase.translateAssociations(java.lang.String atype1, java.lang.String[] rtypes1, java.lang.String atype2, java.lang.String[] rtypes2, TopicMapIF tm, LocatorIF base_on, QueryProcessorIF qp, DeclarationContextIF dc)
           
 

Uses of InvalidQueryException in ontopoly.model
 

Methods in ontopoly.model that throw InvalidQueryException
protected  QueryResultIF QueryMapper.execute(java.lang.String query, java.util.Map<java.lang.String,?> params)
           
 



Copyright © 2000-2012 Ontopia.