Package net.sf.nic

Examples of net.sf.nic.Platform


    if (platforms == null)
      return null;

    Set<Platform> set = new HashSet<Platform>();
    for (String platform : platforms.split("\\s*,\\s*")) {
      Platform p = KnownPlatforms.find(platform);
      if (p != null)
        set.add(p);
      else
        project.logWarning("Failed to resolve a supported platform for '%s'", platform);
    }
View Full Code Here

TOP

Related Classes of net.sf.nic.Platform

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.