|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InvalidQueryException | |
---|---|
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.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. |
Uses of InvalidQueryException in net.ontopia.topicmaps.nav2.utils |
---|
Methods in net.ontopia.topicmaps.nav2.utils that throw InvalidQueryException | |
---|---|
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.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. |
net.ontopia.topicmaps.query.impl.basic.QueryMatches |
ProcessPredicate.satisfy(net.ontopia.topicmaps.query.impl.basic.QueryMatches matches,
java.lang.Object[] arguments)
|
abstract net.ontopia.topicmaps.query.impl.basic.QueryMatches |
JavaPredicate.satisfy(net.ontopia.topicmaps.query.impl.basic.QueryMatches matches,
java.lang.Object[] arguments)
INTERNAL: Internal machinery. |
net.ontopia.topicmaps.query.impl.basic.QueryMatches |
FilterPredicate.satisfy(net.ontopia.topicmaps.query.impl.basic.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. |
|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |