for (SchemaType type : XmlBeans.getBuiltinTypeSystem().globalTypes()) {
types.add(type.getName());
}
detailsForm.appendComboBox("type", "Type", types.toArray(), "The type of the parameter");
StringListFormComponent optionsFormComponent = new StringListFormComponent("Available values for this Parameter");
//TODO: Consider removing hardcoded size
optionsFormComponent.setPreferredSize(new Dimension(350, 100));
detailsForm.appendComponent("options", "Options", optionsFormComponent);
detailsForm.appendTextField("description", "Description", "A short description of the parameter");
detailsForm.appendCheckBox("disableUrlEncoding", "Disable Encoding",
"Disables URL-Encoding of the parameter value");