Tabnine Logo
XMLSchemaReader.getResult
Code IndexAdd Tabnine to your IDE (free)

How to use
getResult
method
in
com.sun.msv.reader.xmlschema.XMLSchemaReader

Best Java code snippets using com.sun.msv.reader.xmlschema.XMLSchemaReader.getResult (Showing top 18 results out of 315)

origin: msv/msv

public Grammar getResultAsGrammar() {
  return getResult();
}

origin: com.sun.xml.bind/jaxb-extra-osgi

public Grammar getResultAsGrammar() {
  return getResult();
}

origin: com.sun.xml.bind/jaxb1-impl

public Grammar getResultAsGrammar() {
  return getResult();
}

origin: kohsuke/msv

public Grammar getResultAsGrammar() {
  return getResult();
}

origin: com.sun.xml.bind/jaxb-extra-osgi

/**
 * Obtains the parsed grammar.
 */
public final XMLSchemaGrammar getResult() {
  finish();
  return reader.getResult();
}
origin: msv/msv

/**
 * Obtains the parsed grammar.
 */
public final XMLSchemaGrammar getResult() {
  finish();
  return reader.getResult();
}

origin: com.sun.xml.bind/jaxb1-impl

/**
 * Obtains the parsed grammar.
 */
public final XMLSchemaGrammar getResult() {
  finish();
  return reader.getResult();
}

origin: kohsuke/msv

/**
 * Obtains the parsed grammar.
 */
public final XMLSchemaGrammar getResult() {
  finish();
  return reader.getResult();
}
origin: msv/msv

/** loads XML Schema */
public static XMLSchemaGrammar parse( InputSource grammar,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammar);
  
  return reader.getResult();
}
origin: kohsuke/msv

/** loads XML Schema */
public static XMLSchemaGrammar parse( String grammarURL,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammarURL);
  
  return reader.getResult();
}

origin: com.sun.xml.bind/jaxb-extra-osgi

/** loads XML Schema */
public static XMLSchemaGrammar parse( InputSource grammar,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammar);
  
  return reader.getResult();
}

origin: kohsuke/msv

/** loads XML Schema */
public static XMLSchemaGrammar parse( InputSource grammar,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammar);
  
  return reader.getResult();
}

origin: msv/msv

/** loads XML Schema */
public static XMLSchemaGrammar parse( String grammarURL,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammarURL);
  
  return reader.getResult();
}

origin: com.sun.xml.bind/jaxb1-impl

/** loads XML Schema */
public static XMLSchemaGrammar parse( String grammarURL,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammarURL);
  
  return reader.getResult();
}

origin: com.sun.xml.bind/jaxb1-impl

/** loads XML Schema */
public static XMLSchemaGrammar parse( InputSource grammar,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammar);
  
  return reader.getResult();
}
origin: com.sun.xml.bind/jaxb-extra-osgi

/** loads XML Schema */
public static XMLSchemaGrammar parse( String grammarURL,
  SAXParserFactory factory, GrammarReaderController controller ) {
  
  XMLSchemaReader reader = new XMLSchemaReader(controller,factory);
  reader.parse(grammarURL);
  
  return reader.getResult();
}

origin: com.sun.xml.bind/jaxb-extra-osgi

/**
 * Convenience method to create a reader and read a single scheme.
 * @param schema
 * @param controller
 * @return
 * @throws TransformerConfigurationException
 * @throws TransformerException
 */
public static XMLSchemaGrammar parse(Source schema, GrammarReaderController controller) throws TransformerConfigurationException, TransformerException {
  /* If the source is a SAXSource, we will still use a SAXParser,
   * so we still create the parser factory.
   */
  XMLSchemaReader reader = new XMLSchemaReader(controller);
  reader.parse(schema);
  return reader.getResult();
  
}
origin: kohsuke/msv

/**
 * Convenience method to create a reader and read a single scheme.
 * @param schema
 * @param controller
 * @return
 * @throws TransformerConfigurationException
 * @throws TransformerException
 */
public static XMLSchemaGrammar parse(Source schema, GrammarReaderController controller) throws TransformerConfigurationException, TransformerException {
  /* If the source is a SAXSource, we will still use a SAXParser,
   * so we still create the parser factory.
   */
  XMLSchemaReader reader = new XMLSchemaReader(controller);
  reader.parse(schema);
  return reader.getResult();
  
}
com.sun.msv.reader.xmlschemaXMLSchemaReadergetResult

Popular methods of XMLSchemaReader

  • parse
    loads XML Schema
  • switchSource
  • <init>
  • getXmlSchemaForXmlSchema
  • _processOccurs
  • addBackPatchJob
  • createAttributeState
    creates a state object that parses "attribute","attributeGroup ref", and "anyAttribute".
  • createFacetState
  • createModelGroupState
    creates a state object that parses "all"/"group ref"/"choice" and "sequence".
  • createParserFactory
  • detectUndefinedOnes
  • getCurrentState
  • detectUndefinedOnes,
  • getCurrentState,
  • getDeclaredLocationOf,
  • getOrCreateSchema,
  • getType,
  • isSchemaDefined,
  • isSchemaNamespace,
  • isSubstitutable,
  • markSchemaAsDefined

Popular in Java

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Best plugins for Eclipse
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