blob: bbb7f92dd287ec036108ab4e67793e80b619f3ab [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.graph.editparts;
import java.util.Collections;
import java.util.List;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.Label;
import org.eclipse.wst.xsd.ui.internal.XSDEditorPlugin;
public class MessageEditPart extends BaseEditPart
{
public MessageEditPart()
{
}
protected IFigure createFigure()
{
Label label = new Label(XSDEditorPlugin.getXSDString("_UI_GRAPH_VIEW_NOT_AVAILABLE"));
return label;
}
protected List getModelChildren()
{
return Collections.EMPTY_LIST;
}
}