Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/directedit/WrapTextCellEditor.java')
-rwxr-xr-xplugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/directedit/WrapTextCellEditor.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/directedit/WrapTextCellEditor.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/directedit/WrapTextCellEditor.java
new file mode 100755
index 00000000000..06940edca68
--- /dev/null
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/directedit/WrapTextCellEditor.java
@@ -0,0 +1,55 @@
+/******************************************************************************
+ * Copyright (c) 2002, 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.papyrus.infra.gmfdiag.tooling.runtime.directedit;
+
+import org.eclipse.swt.widgets.Composite;
+
+/**
+ * @since 3.2
+ * @deprecated This interface is left for backward compatibility only and will be removed soon.
+ * @see org.eclipse.gmf.runtime.gef.ui.internal.parts.WrapTextCellEditor
+ */
+public class WrapTextCellEditor extends org.eclipse.gmf.runtime.gef.ui.internal.parts.WrapTextCellEditor {
+
+ /**
+ * Creates a new text string cell editor with no control
+ * The cell editor value is the string itself, which is initially the empty
+ * string. Initially, the cell editor has no cell validator.
+ */
+ public WrapTextCellEditor() {
+ super();
+ }
+
+ /**
+ * Creates a new text string cell editor parented under the given control.
+ * The cell editor value is the string itself, which is initially the empty string.
+ * Initially, the cell editor has no cell validator.
+ *
+ * @param parent the parent control
+ */
+ public WrapTextCellEditor(Composite parent) {
+ super(parent);
+ }
+
+ /**
+ * Creates a new text string cell editor parented under the given control.
+ * The cell editor value is the string itself, which is initially the empty string.
+ * Initially, the cell editor has no cell validator.
+ *
+ * @param parent the parent control
+ * @param style the style bits
+ */
+ public WrapTextCellEditor(Composite parent, int style) {
+ super(parent, style);
+ }
+
+}

Back to the top