blob: e4bf3b3d19f75cd199fc0bd2fb3b253ee575c072 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.data.model.editor.part;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.Label;
import org.eclipse.gef.editparts.AbstractGraphicalEditPart;
/**
* @author Roberto E. Escobar
*/
public class StringEditPart extends AbstractGraphicalEditPart {
private final String data;
public StringEditPart(String data) {
super();
this.data = data;
}
protected IFigure createFigure() {
return new Label(data);
}
protected void createEditPolicies() {
}
}