Package org.sylfra.idea.plugins.xstructure.config

Examples of org.sylfra.idea.plugins.xstructure.config.Schema


  /**
   * {@inheritDoc}
   */
  public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context)
  {
    Schema schema = new Schema();

    String uri = reader.getAttribute("uri");

    try
    {
      schema.setUriPattern(Pattern.compile(uri));
    }
    catch (PatternSyntaxException e)
    {
      LOGGER.warn("Invalid pattern for schema URI:" + uri, e);
    }
View Full Code Here

TOP

Related Classes of org.sylfra.idea.plugins.xstructure.config.Schema

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.