return environmentType.xmlText(xmlOptions);
}
public void setAsText(String text) {
try {
EnvironmentDocument environmentDocument = EnvironmentDocument.Factory.parse(text);
EnvironmentType environmentType = environmentDocument.getEnvironment();
Environment environment = (Environment) getValue(environmentType, null, null, null);
setValue(environment);
} catch (XmlException e) {
throw new PropertyEditorException(e);