Package org.redline_rpm.header

Examples of org.redline_rpm.header.Os


   
    RpmType type = RpmType.valueOf( editor.getValue( "rpm:type", BINARY.toString()));
    builder.setType( type);
   
    Architecture arch = Architecture.valueOf( editor.getValue( "rpm:architecture", NOARCH.toString()));
    Os os = Os.valueOf( editor.getValue( "rpm:os", LINUX.toString()));
    builder.setPlatform( arch, os);
   
    builder.setSummary( editor.getValue( "rpm:summary/text()"));
    builder.setDescription( editor.getValue( "rpm:description/text()"));
    builder.setBuildHost( editor.getValue( "rpm:host/text()", InetAddress.getLocalHost().getHostName()));
View Full Code Here

TOP

Related Classes of org.redline_rpm.header.Os

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.