Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Gabel2016-07-07 14:52:01 +0000
committerGerrit Code Review @ Eclipse.org2016-09-23 15:58:50 +0000
commita816f69d985b52ce849ca1dcd834f92fcfb870c4 (patch)
tree6fb80b38a1de91b7e4a5f00b69dd1bd57fbb9291 /plugins/infra
parenta13893307ab8c9de70996e23b2d7d5fa54656192 (diff)
downloadorg.eclipse.papyrus-a816f69d985b52ce849ca1dcd834f92fcfb870c4.tar.gz
org.eclipse.papyrus-a816f69d985b52ce849ca1dcd834f92fcfb870c4.tar.xz
org.eclipse.papyrus-a816f69d985b52ce849ca1dcd834f92fcfb870c4.zip
Bug 497496: [Databinding] Need to open API for TextObservableValue
Change visibility of currentValue attribute. Add missing copyright on this file Change-Id: Id01cefe26a24e6c859a2aa6f3fedbfb268d08d15 Signed-off-by: Sebastien Gabel <sebastien.gabel@esterel-technologies.com>
Diffstat (limited to 'plugins/infra')
-rw-r--r--plugins/infra/ui/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/databinding/TextObservableValue.java15
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/infra/ui/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/databinding/TextObservableValue.java b/plugins/infra/ui/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/databinding/TextObservableValue.java
index 1f14ba8cd3f..af1859b327c 100644
--- a/plugins/infra/ui/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/databinding/TextObservableValue.java
+++ b/plugins/infra/ui/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/databinding/TextObservableValue.java
@@ -1,3 +1,16 @@
+/*****************************************************************************
+ * Copyright (c) 2011, 2016 CEA LIST, Esterel Technologies SAS 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:
+ * Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
+ * Calin Glitia (Esterel Technologies SAS) - Bug 497496
+ *
+ *****************************************************************************/
package org.eclipse.papyrus.infra.widgets.databinding;
import org.eclipse.core.databinding.observable.value.AbstractObservableValue;
@@ -21,7 +34,7 @@ public class TextObservableValue extends AbstractObservableValue implements List
private int eventType;
- private Object currentValue;
+ protected Object currentValue;
/**
* If the Text field may represent more than one value,

Back to the top