Codota Logo
ClassNameCollector.addExceptionClassName
Code IndexAdd Codota to your IDE (free)

How to use
addExceptionClassName
method
in
com.sun.tools.ws.processor.util.ClassNameCollector

Best Java code snippets using com.sun.tools.ws.processor.util.ClassNameCollector.addExceptionClassName (Showing top 4 results out of 315)

  • Common ways to obtain ClassNameCollector
private void myMethod () {
ClassNameCollector c =
  • Codota Iconnew ClassNameCollector()
  • Smart code suggestions by Codota
}
origin: javaee/metro-jax-ws

protected void preVisit(Fault fault) throws Exception {
  if (!_exceptions.contains(fault.getJavaException())) {
    /* the same exception can be used in several faults, but that
     * doesn't mean that there is a conflict
     */
    _exceptions.add(fault.getJavaException());
    addExceptionClassName(fault.getJavaException().getName());
    for (Iterator iter = fault.getSubfaults();
      iter != null && iter.hasNext();) {
      Fault subfault = (Fault) iter.next();
      preVisit(subfault);
    }
  }
}
origin: com.sun.xml.ws/jaxws-tools

protected void preVisit(Fault fault) throws Exception {
  if (!_exceptions.contains(fault.getJavaException())) {
    /* the same exception can be used in several faults, but that
     * doesn't mean that there is a conflict
     */
    _exceptions.add(fault.getJavaException());
    addExceptionClassName(fault.getJavaException().getName());
    for (Iterator iter = fault.getSubfaults();
      iter != null && iter.hasNext();) {
      Fault subfault = (Fault) iter.next();
      preVisit(subfault);
    }
  }
}
origin: org.glassfish.metro/webservices-tools

protected void preVisit(Fault fault) throws Exception {
  if (!_exceptions.contains(fault.getJavaException())) {
    /* the same exception can be used in several faults, but that
     * doesn't mean that there is a conflict
     */
    _exceptions.add(fault.getJavaException());
    addExceptionClassName(fault.getJavaException().getName());
    for (Iterator iter = fault.getSubfaults();
      iter != null && iter.hasNext();) {
      Fault subfault = (Fault) iter.next();
      preVisit(subfault);
    }
  }
}
origin: javaee/metro-jax-ws

protected void preVisit(Fault fault) throws Exception {
  if (!_exceptions.contains(fault.getJavaException())) {
    /* the same exception can be used in several faults, but that
     * doesn't mean that there is a conflict
     */
    _exceptions.add(fault.getJavaException());
    addExceptionClassName(fault.getJavaException().getName());
    for (Iterator iter = fault.getSubfaults();
      iter != null && iter.hasNext();) {
      Fault subfault = (Fault) iter.next();
      preVisit(subfault);
    }
  }
}
com.sun.tools.ws.processor.utilClassNameCollectoraddExceptionClassName

Popular methods of ClassNameCollector

  • <init>
  • addJAXBGeneratedClassName
  • addSEIClassName
  • getConflictingClassNames
  • getExceptionClassNames
  • getJaxbGeneratedClassNames
  • getSeiClassNames
  • preVisit
  • process
  • registerClassName
  • visit
  • visitBlock
  • visit,
  • visitBlock,
  • visitType

Popular in Java

  • Making http post requests using okhttp
  • startActivity (Activity)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • getContentResolver (Context)
  • IOException (java.io)
    Signals that an I/O exception of some sort has occurred. This class is the general class of exceptio
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now