Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7562a18eb969c86194008b595790ca79eacb8a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.xsd.ui.internal.commands;

import org.eclipse.xsd.XSDAttributeDeclaration;
import org.eclipse.xsd.XSDComplexTypeDefinition;
import org.eclipse.xsd.XSDConcreteComponent;
import org.eclipse.xsd.XSDElementDeclaration;
import org.eclipse.xsd.XSDSimpleTypeDefinition;
import org.eclipse.xsd.XSDTypeDefinition;

public final class MakeAnonymousTypeGlobalCommand extends AbstractCommand {

	String fNewName;

	public MakeAnonymousTypeGlobalCommand(XSDConcreteComponent element,
			String newName) {
		super(element.getContainer());
		setModelObject(element);
		fNewName = newName;
	}

	public void run() {
		XSDConcreteComponent model = getModelObject();
		XSDConcreteComponent parent = model.getContainer();
		XSDTypeDefinition globalTypeDef = null;
		if (model instanceof XSDComplexTypeDefinition) {
			if (parent instanceof XSDElementDeclaration) {
				// clone typedef with it's content and set it global
				globalTypeDef = (XSDComplexTypeDefinition) model
						.cloneConcreteComponent(true, false);
				globalTypeDef.setName(fNewName);
				parent.getSchema().getContents().add(globalTypeDef);
				((XSDElementDeclaration) parent)
						.setTypeDefinition(globalTypeDef);
			}
		} else if (model instanceof XSDSimpleTypeDefinition) {

			XSDSimpleTypeDefinition typeDef = (XSDSimpleTypeDefinition) model;
			if (parent instanceof XSDElementDeclaration) {
				// clone typedef with it's content and set it global
				globalTypeDef = (XSDSimpleTypeDefinition) typeDef
						.cloneConcreteComponent(true, false);
				globalTypeDef.setName(fNewName);
				parent.getSchema().getContents().add(globalTypeDef);
				((XSDElementDeclaration) parent)
						.setTypeDefinition(globalTypeDef);
				formatChild(globalTypeDef.getElement());

			} else if (parent instanceof XSDAttributeDeclaration) {
				// clone typedef with it's content and set it global
				globalTypeDef = (XSDSimpleTypeDefinition) typeDef
						.cloneConcreteComponent(true, false);
				globalTypeDef.setName(fNewName);
				parent.getSchema().getContents().add(globalTypeDef);
				((XSDAttributeDeclaration) parent)
						.setTypeDefinition((XSDSimpleTypeDefinition) globalTypeDef);

			}

		}

		formatChild(globalTypeDef.getElement());

	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.wst.xsd.ui.internal.commands.AbstractCommand#adopt(org.eclipse.xsd.XSDConcreteComponent)
	 */
	protected boolean adopt(XSDConcreteComponent model) {
		// TODO Auto-generated method stub
		return true;
	}
}

Back to the top