private StructureEditor webServiceEditor(DataStructure struct, SourceTarget st) {
return new WebServiceStructureEditor((WebServiceStructure) struct, st, explorerSupport);
}
private StructureEditor xmlEditor(DataStructure struct, SourceTarget st) {
ManagedProject p = ProjectUtils.getManagedProject(transformation);
XsdFileStore xsdFileStore = new XsdFileStore(p.getFileStore());
XmlStructureEditor editor = new XmlStructureEditor((XmlStructure) struct, xsdFileStore, st);
configureXmlEditor(editor, st);
return editor;
}