Package com.relativitas.maven.plugins.formatter.xml

Examples of com.relativitas.maven.plugins.formatter.xml.Profiles


    Object result = digester.parse(input);
    if (result == null && !(result instanceof Profiles)) {
      throw new ConfigReadException("No profiles found in config file");
    }

    Profiles profiles = (Profiles) result;
    List list = profiles.getProfiles();
    if (list.size() == 0) {
      throw new ConfigReadException("No profile in config file of kind: "
          + Profiles.PROFILE_KIND);
    }
View Full Code Here

TOP

Related Classes of com.relativitas.maven.plugins.formatter.xml.Profiles

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.