blob: f9eadae5412c2f3419c0f0477f208d9b182544a6 [file] [log] [blame]
/*******************************************************************************
* 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.actions;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.xsd.XSDConcreteComponent;
import org.eclipse.xsd.XSDSchema;
import org.eclipse.xsd.util.XSDConstants;
import org.w3c.dom.Element;
public class CreateGroupAction extends CreateElementAction
{
XSDSchema xsdSchema;
/**
* Constructor for CreateGroupAction.
*/
public CreateGroupAction()
{
super();
}
/**
* Constructor for CreateGroupAction.
* @param text
*/
public CreateGroupAction(String text)
{
super(text);
}
/**
* Constructor for CreateGroupAction.
* @param text
* @param XSDSchema
*/
public CreateGroupAction(String text, XSDSchema xsdSchema)
{
super(text);
this.xsdSchema = xsdSchema;
}
/**
* Constructor for CreateGroupAction.
* @param text
* @param image
*/
public CreateGroupAction(String text, ImageDescriptor image)
{
super(text, image);
}
public Element createAndAddNewChildElement()
{
XSDConcreteComponent xsdComp = xsdSchema.getCorrespondingComponent(parentNode);
Element childNode = super.createAndAddNewChildElement();
String prefix = parentNode.getPrefix();
prefix = (prefix == null) ? "" : (prefix + ":");
Element contentModelNode = getDocument().createElementNS(XSDConstants.SCHEMA_FOR_SCHEMA_URI_2001, prefix + XSDConstants.SEQUENCE_ELEMENT_TAG);
childNode.appendChild(contentModelNode);
formatChild(childNode);
xsdComp.setElement(parentNode);
return childNode;
}
}