Package net.sourceforge.javautil.common.io

Examples of net.sourceforge.javautil.common.io.IModifiableInputSource$ModifiableInputSourceAbstract


    @Override public ProjectObjectModel getDescriptor() {
      if (this.pom == null) {
        URL pomURL = this.application.getResourceResolver().getResource("WEB-INF/pom.xml");
        if (pomURL != null) {
          IModifiableInputSource input = new IModifiableInputSource.URLInputSource(pomURL);
          pom = ProjectObjectModel.parse(ClassPackageContext.getPackageResolver(), input);
        }
      }
      return pom;
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.common.io.IModifiableInputSource$ModifiableInputSourceAbstract

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.