Package org.apache.commons.configuration

Examples of org.apache.commons.configuration.XMLConfiguration.containsKey()


    public WikipediaBenchmark(WorkloadConfiguration workConf) {   
    super("wikipedia", workConf, true);
   
    XMLConfiguration xml = workConf.getXmlConfig();
    this.traceInput = (xml != null && xml.containsKey("tracefile") ? new File(xml.getString("tracefile")) : null);
    if (xml != null && xml.containsKey("traceOut")) {
        this.traceSize = xml.getInt("traceOut");
        this.traceOutput = new File(xml.getString("tracefile"));
    } else {
        this.traceSize = 0;
        this.traceOutput = null;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.