ExpressionContext.getErrorListener
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.apache.xalan.extensions.ExpressionContext.getErrorListener (Showing top 8 results out of 315)

  • Common ways to obtain ExpressionContext
private void myMethod () {
ExpressionContext e =
  • SQLDocument sQLDocument;sQLDocument.getExpressionContext()
  • Smart code suggestions by Codota
}
origin: xalan/xalan

/**
 * This is an internal version of Set Error that is called withen
 * XConnection where there is no SQLDocument created yet. As in the
 * Connect statement or creation of the ConnectionPool.
 */
public void setError(Exception excp,ExpressionContext expr)
{
 try
 {
  ErrorListener listen = expr.getErrorListener();
  if ( listen != null && excp != null )
  {
   
   listen.warning(
    new TransformerException(excp.toString(),
    expr.getXPathContext().getSAXLocator(), excp));
  }
 }
 catch(Exception e) {}
}
origin: xalan/xalan

ErrorListener listen = cont.getErrorListener();
if ( listen != null && excp != null )
listen.warning(
origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * This is an internal version of Set Error that is called withen
 * XConnection where there is no SQLDocument created yet. As in the
 * Connect statement or creation of the ConnectionPool.
 */
public void setError(Exception excp,ExpressionContext expr)
{
 try
 {
  ErrorListener listen = expr.getErrorListener();
  if ( listen != null && excp != null )
  {
   
   listen.warning(
    new TransformerException(excp.toString(),
    expr.getXPathContext().getSAXLocator(), excp));
  }
 }
 catch(Exception e) {}
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * This is an internal version of Set Error that is called withen
 * XConnection where there is no SQLDocument created yet. As in the
 * Connect statement or creation of the ConnectionPool.
 */
public void setError(Exception excp,ExpressionContext expr)
{
 try
 {
  ErrorListener listen = expr.getErrorListener();
  if ( listen != null && excp != null )
  {
   
   listen.warning(
    new TransformerException(excp.toString(),
    expr.getXPathContext().getSAXLocator(), excp));
  }
 }
 catch(Exception e) {}
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * This is an internal version of Set Error that is called withen
 * XConnection where there is no SQLDocument created yet. As in the
 * Connect statement or creation of the ConnectionPool.
 */
public void setError(Exception excp,ExpressionContext expr)
{
 try
 {
  ErrorListener listen = expr.getErrorListener();
  if ( listen != null && excp != null )
  {
   
   listen.warning(
    new TransformerException(excp.toString(),
    expr.getXPathContext().getSAXLocator(), excp));
  }
 }
 catch(Exception e) {}
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

ErrorListener listen = cont.getErrorListener();
if ( listen != null && excp != null )
listen.warning(
origin: org.apache.xalan/com.springsource.org.apache.xalan

ErrorListener listen = cont.getErrorListener();
if ( listen != null && excp != null )
listen.warning(
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

ErrorListener listen = cont.getErrorListener();
if ( listen != null && excp != null )
listen.warning(
org.apache.xalan.extensionsExpressionContextgetErrorListener

Javadoc

Get the error listener.

Popular methods of ExpressionContext

  • getVariableOrParam
    Get a variable based on it's qualified name.
  • getXPathContext
    Get the XPathContext that owns this ExpressionContext. Note: exslt:function requires the XPathContex
  • getContextNode
    Get the current context node.

Popular in Java

  • Finding current android device location
  • setScale (BigDecimal)
  • setContentView (Activity)
  • getSystemService (Context)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • String (java.lang)
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)