use of org.eclipse.xsd.XSDEnumerationFacet in project webtools.sourceediting by eclipse.
the class AddXSDEnumerationFacetAction method run.
public void run() {
Object selection = ((IStructuredSelection) getSelection()).getFirstElement();
if (selection instanceof XSDBaseAdapter) {
selection = ((XSDBaseAdapter) selection).getTarget();
int index = -1;
AddEnumerationsCommand command = null;
XSDSimpleTypeDefinition st = null;
if (selection instanceof XSDSimpleTypeDefinition) {
st = (XSDSimpleTypeDefinition) selection;
command = new AddEnumerationsCommand(getText(), st);
} else if (selection instanceof XSDEnumerationFacet) {
st = ((XSDEnumerationFacet) selection).getSimpleTypeDefinition();
index = st.getFacetContents().indexOf(selection);
doDirectEdit = true;
command = new AddEnumerationsCommand(getText(), st, getId(), index);
} else if (// Support for Complex Type's simple Content with enumerations
selection instanceof XSDComplexTypeDefinition) {
st = (XSDSimpleTypeDefinition) ((XSDComplexTypeDefinition) selection).getContent();
command = new AddEnumerationsCommand(getText(), st);
} else // null
{
return;
}
List enumList = st.getEnumerationFacets();
// $NON-NLS-1$
String newName = XSDCommonUIUtils.createUniqueEnumerationValue("value", enumList);
command.setValue(newName);
getCommandStack().execute(command);
addedComponent = command.getAddedComponent();
Adapter adapter = XSDAdapterFactory.getInstance().adapt(addedComponent);
selectAddedComponent(adapter);
}
}
use of org.eclipse.xsd.XSDEnumerationFacet in project webtools.sourceediting by eclipse.
the class XSDImpl method getEnumeratedValuesForSimpleType.
private static void getEnumeratedValuesForSimpleType(XSDTypeDefinition type, List result) {
List enumerationFacets = ((XSDSimpleTypeDefinition) type).getEnumerationFacets();
for (Iterator i = enumerationFacets.iterator(); i.hasNext(); ) {
XSDEnumerationFacet enumFacet = (XSDEnumerationFacet) i.next();
List values = enumFacet.getValue();
for (Iterator j = values.iterator(); j.hasNext(); ) {
Object o = j.next();
if (o != null) {
if (!result.contains(o)) {
result.add(o.toString());
}
}
}
}
}
use of org.eclipse.xsd.XSDEnumerationFacet in project webtools.sourceediting by eclipse.
the class SpecificConstraintsWidget method doGetValue.
public Object doGetValue(Object element, String property) {
if (element instanceof XSDPatternFacet) {
XSDPatternFacet patternFacet = (XSDPatternFacet) element;
String value = patternFacet.getLexicalValue();
if (value == null)
// $NON-NLS-1$
value = "";
return value;
} else if (element instanceof XSDEnumerationFacet) {
XSDEnumerationFacet enumFacet = (XSDEnumerationFacet) element;
String value = enumFacet.getLexicalValue();
if (value == null)
// $NON-NLS-1$
value = "";
return value;
}
// $NON-NLS-1$
return "";
}
use of org.eclipse.xsd.XSDEnumerationFacet in project webtools.sourceediting by eclipse.
the class SpecificConstraintsWidget method doModify.
public void doModify(Object element, String property, Object value) {
setButtonStates(this.kind);
if (element instanceof TableItem && (value != null)) {
TableItem item = (TableItem) element;
if (item.getData() instanceof XSDPatternFacet) {
XSDPatternFacet patternFacet = (XSDPatternFacet) item.getData();
patternFacet.setLexicalValue((String) value);
item.setData(patternFacet);
item.setText((String) value);
} else if (item.getData() instanceof XSDEnumerationFacet) {
XSDEnumerationFacet enumFacet = (XSDEnumerationFacet) item.getData();
SetXSDFacetValueCommand command = new SetXSDFacetValueCommand(Messages._UI_ACTION_SET_ENUMERATION_VALUE, enumFacet);
command.setValue((String) value);
commandStack.execute(command);
item.setData(enumFacet);
item.setText((String) value);
}
}
}
use of org.eclipse.xsd.XSDEnumerationFacet in project webtools.sourceediting by eclipse.
the class SpecificConstraintsWidget method widgetSelected.
public void widgetSelected(SelectionEvent e) {
XSDSimpleTypeDefinition st = input;
if (e.widget == addButton) {
List enumList = st.getEnumerationFacets();
// $NON-NLS-1$
String newName = XSDCommonUIUtils.createUniqueEnumerationValue("value", enumList);
if (kind == ENUMERATION) {
CompoundCommand compoundCommand = new CompoundCommand();
XSDSimpleTypeDefinition targetSimpleType = null;
if (feature != null) {
XSDSimpleTypeDefinition anonymousSimpleType = XSDCommonUIUtils.getAnonymousSimpleType(feature, input);
if (anonymousSimpleType == null) {
anonymousSimpleType = XSDFactory.eINSTANCE.createXSDSimpleTypeDefinition();
anonymousSimpleType.setBaseTypeDefinition(input);
ChangeToLocalSimpleTypeCommand changeToAnonymousCommand = new ChangeToLocalSimpleTypeCommand(Messages._UI_ACTION_CHANGE_PATTERN, feature);
changeToAnonymousCommand.setAnonymousSimpleType(anonymousSimpleType);
compoundCommand.add(changeToAnonymousCommand);
input = anonymousSimpleType;
}
targetSimpleType = anonymousSimpleType;
} else {
targetSimpleType = input;
}
AddEnumerationsCommand command = new AddEnumerationsCommand(Messages._UI_ACTION_ADD_ENUMERATION, targetSimpleType);
command.setValue(newName);
compoundCommand.add(command);
commandStack.execute(compoundCommand);
setInput(input);
constraintsTableViewer.refresh();
int newItemIndex = constraintsTableViewer.getTable().getItemCount() - 1;
constraintsTableViewer.editElement(constraintsTableViewer.getElementAt(newItemIndex), 0);
}
} else if (e.widget == addUsingDialogButton) {
Display display = Display.getCurrent();
// if it is null, get the default one
display = display == null ? Display.getDefault() : display;
Shell shell = display.getActiveShell();
if (kind == PATTERN) {
// $NON-NLS-1$
String initialValue = "";
RegexWizard wizard = new RegexWizard(initialValue);
WizardDialog wizardDialog = new WizardDialog(shell, wizard);
wizardDialog.setBlockOnOpen(true);
wizardDialog.create();
int result = wizardDialog.open();
if (result == Window.OK) {
String newPattern = wizard.getPattern();
CompoundCommand compoundCommand = new CompoundCommand();
XSDSimpleTypeDefinition targetSimpleType = null;
if (feature != null) {
XSDSimpleTypeDefinition anonymousSimpleType = XSDCommonUIUtils.getAnonymousSimpleType(feature, input);
if (anonymousSimpleType == null) {
anonymousSimpleType = XSDFactory.eINSTANCE.createXSDSimpleTypeDefinition();
anonymousSimpleType.setBaseTypeDefinition(input);
ChangeToLocalSimpleTypeCommand changeToAnonymousCommand = new ChangeToLocalSimpleTypeCommand(Messages._UI_ACTION_CHANGE_PATTERN, feature);
changeToAnonymousCommand.setAnonymousSimpleType(anonymousSimpleType);
compoundCommand.add(changeToAnonymousCommand);
input = anonymousSimpleType;
}
targetSimpleType = anonymousSimpleType;
} else {
targetSimpleType = input;
}
UpdateXSDPatternFacetCommand command = new UpdateXSDPatternFacetCommand(Messages._UI_ACTION_ADD_PATTERN, targetSimpleType, UpdateXSDPatternFacetCommand.ADD);
command.setValue(newPattern);
setInput(input);
compoundCommand.add(command);
commandStack.execute(compoundCommand);
facetSection.doSetInput();
}
constraintsTableViewer.refresh();
} else {
EnumerationsDialog dialog = new EnumerationsDialog(shell);
dialog.setBlockOnOpen(true);
int result = dialog.open();
if (result == Window.OK) {
String text = dialog.getText();
String delimiter = dialog.getDelimiter();
StringTokenizer tokenizer = new StringTokenizer(text, delimiter);
CompoundCommand compoundCommand = new CompoundCommand(Messages._UI_ACTION_ADD_ENUMERATIONS);
XSDSimpleTypeDefinition targetSimpleType = null;
if (feature != null) {
XSDSimpleTypeDefinition anonymousSimpleType = XSDCommonUIUtils.getAnonymousSimpleType(feature, input);
if (anonymousSimpleType == null) {
anonymousSimpleType = XSDFactory.eINSTANCE.createXSDSimpleTypeDefinition();
anonymousSimpleType.setBaseTypeDefinition(input);
// $NON-NLS-1$
ChangeToLocalSimpleTypeCommand changeToAnonymousCommand = new ChangeToLocalSimpleTypeCommand("", feature);
changeToAnonymousCommand.setAnonymousSimpleType(anonymousSimpleType);
compoundCommand.add(changeToAnonymousCommand);
input = anonymousSimpleType;
}
targetSimpleType = anonymousSimpleType;
} else {
targetSimpleType = input;
}
while (tokenizer.hasMoreTokens()) {
String token = tokenizer.nextToken();
if (dialog.isPreserveWhitespace() == false) {
token = token.trim();
}
AddEnumerationsCommand command = new AddEnumerationsCommand(Messages._UI_ACTION_ADD_ENUMERATIONS, targetSimpleType);
command.setValue(token);
compoundCommand.add(command);
}
commandStack.execute(compoundCommand);
}
// setInput(input);
facetSection.doSetInput();
constraintsTableViewer.refresh();
}
} else if (e.widget == deleteButton) {
StructuredSelection selection = (StructuredSelection) constraintsTableViewer.getSelection();
CompoundCommand compoundCommand = new CompoundCommand();
if (selection != null) {
Iterator i = selection.iterator();
if (selection.size() > 0) {
compoundCommand.setLabel(Messages._UI_ACTION_DELETE_CONSTRAINTS);
} else {
compoundCommand.setLabel(Messages._UI_ACTION_DELETE_PATTERN);
}
while (i.hasNext()) {
Object obj = i.next();
if (obj != null) {
if (obj instanceof XSDPatternFacet) {
// $NON-NLS-1$
UpdateXSDPatternFacetCommand command = new UpdateXSDPatternFacetCommand("", input, UpdateXSDPatternFacetCommand.DELETE);
command.setPatternToEdit((XSDPatternFacet) obj);
compoundCommand.add(command);
} else if (obj instanceof XSDEnumerationFacet) {
XSDEnumerationFacet enumFacet = (XSDEnumerationFacet) obj;
DeleteCommand deleteCommand = new DeleteCommand(Messages._UI_ACTION_DELETE_ENUMERATION, enumFacet);
compoundCommand.add(deleteCommand);
}
}
}
commandStack.execute(compoundCommand);
constraintsTableViewer.refresh();
}
} else if (e.widget == editButton) {
StructuredSelection selection = (StructuredSelection) constraintsTableViewer.getSelection();
if (selection != null) {
Object obj = selection.getFirstElement();
if (obj instanceof XSDPatternFacet) {
XSDPatternFacet pattern = (XSDPatternFacet) obj;
String initialValue = pattern.getLexicalValue();
if (initialValue == null) {
// $NON-NLS-1$
initialValue = "";
}
Shell shell = Display.getCurrent().getActiveShell();
RegexWizard wizard = new RegexWizard(initialValue);
WizardDialog wizardDialog = new WizardDialog(shell, wizard);
wizardDialog.setBlockOnOpen(true);
wizardDialog.create();
int result = wizardDialog.open();
if (result == Window.OK) {
String newPattern = wizard.getPattern();
pattern.setLexicalValue(newPattern);
constraintsTableViewer.refresh();
}
}
}
}
setButtonStates(this.kind);
}
Aggregations