Community
Participate
Working Groups
Config.IsDataMultiplexed.Tag=IsDataMultiplexed
Config.ProcessPolling.Tag=ProcessPolling
Config.Jvm.Tag=Jvm
Config.Jvm.Location.Tag=location
Config.Keystore.Tag=Keystore
Config.KeystorePassword.Tag=KeystorePassword
Config.Logging.Tag=Logging
agent = doc.createElement(Agent.TAG);
Agent.setPath(agent, "%TPTP_AC_HOME%" + sr + "agents");
acConfig.appendChild(agent);
// Jvm
jvm = doc.createElement(Jvm.TAG);
Jvm.setLocation(jvm, configFile.getValue("jvm"));
acConfig.appendChild(jvm);
//
// Logging
configuration.appendChild(processPolling);
n = doc.createTextNode("true");
processPolling.appendChild(n);
configuration.appendChild(jvm);
n = doc.createTextNode(configFile.getValue("jvm"));
jvm.appendChild(n);
version = doc.createElement(Version.TAG);
configuration.appendChild(version);
n = doc.createTextNode(ConfigUtility
**********************************************************************/
package org.eclipse.tptp.platform.agentcontroller.config;
import org.w3c.dom.Element;
public class Jvm extends ConfigElement {
public final static String TAG = ConfigUtility.getString("Config.Jvm.Tag");
public static void setLocation(Element elem, String value) {
elem.setAttribute(ConfigUtility.getString("Config.Jvm.Location.Tag"), value);
}