Tabnine Logo
ValidationContext.tourTree
Code IndexAdd Tabnine to your IDE (free)

How to use
tourTree
method
in
org.jibx.binding.model.ValidationContext

Best Java code snippets using org.jibx.binding.model.ValidationContext.tourTree (Showing top 3 results out of 315)

origin: org.jibx/jibx-tools

/**
 * Populate the mapping directory from a supplied list of root bindings. This uses a visitor to analyze the
 * bindings, building the detail information to be used during the actual generation process.
 * 
 * @param bindings
 */
public void populate(List bindings) {
  
  // analyze all the bindings
  AnalysisVisitor visitor = new AnalysisVisitor(m_context);
  for (Iterator iter = bindings.iterator(); iter.hasNext();) {
    m_context.tourTree((BindingElement)iter.next(), visitor);
  }
  
  // flag all mappings referenced as base types to be defined as types
  for (Iterator iter = m_forceTypeMappings.iterator(); iter.hasNext();) {
    MappingElement mapping = (MappingElement)iter.next();
    MappingDetail detail = (MappingDetail)m_mappingMap.get(mapping);
    detail.setType(true);
  }
}

origin: org.apache.axis2/axis2-jibx

vctx.setBindingRoot(binding);
IncludePrevalidationVisitor ipv = new IncludePrevalidationVisitor(vctx);
vctx.tourTree(binding, ipv);
if (vctx.getErrorCount() != 0 || vctx.getFatalCount() != 0) {
  ArrayList probs = vctx.getProblems();
origin: apache/axis2-java

vctx.setBindingRoot(binding);
IncludePrevalidationVisitor ipv = new IncludePrevalidationVisitor(vctx);
vctx.tourTree(binding, ipv);
if (vctx.getErrorCount() != 0 || vctx.getFatalCount() != 0) {
  ArrayList probs = vctx.getProblems();
org.jibx.binding.modelValidationContexttourTree

Popular methods of ValidationContext

  • getErrorCount
  • getFatalCount
  • getProblems
  • setBindingRoot
  • addFatal
  • getFormatDefinitions
  • <init>
  • addError
  • addWarning
  • getParentElement

Popular in Java

  • Reading from database using SQL prepared statement
  • getContentResolver (Context)
  • setScale (BigDecimal)
  • addToBackStack (FragmentTransaction)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now