Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/runtime/org.eclipse.fx.emf.edit.ui/src/org/eclipse/fx/emf/edit/ui/ProxyCellValueFactory.java')
-rw-r--r--[-rwxr-xr-x]bundles/runtime/org.eclipse.fx.emf.edit.ui/src/org/eclipse/fx/emf/edit/ui/ProxyCellValueFactory.java81
1 files changed, 41 insertions, 40 deletions
diff --git a/bundles/runtime/org.eclipse.fx.emf.edit.ui/src/org/eclipse/fx/emf/edit/ui/ProxyCellValueFactory.java b/bundles/runtime/org.eclipse.fx.emf.edit.ui/src/org/eclipse/fx/emf/edit/ui/ProxyCellValueFactory.java
index e9bf107a2..7bdfca97e 100755..100644
--- a/bundles/runtime/org.eclipse.fx.emf.edit.ui/src/org/eclipse/fx/emf/edit/ui/ProxyCellValueFactory.java
+++ b/bundles/runtime/org.eclipse.fx.emf.edit.ui/src/org/eclipse/fx/emf/edit/ui/ProxyCellValueFactory.java
@@ -1,41 +1,42 @@
-/*******************************************************************************
- * Copyright (c) 2012 TESIS DYNAware GmbH 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:
- * Torsten Sommer <torsten.sommer@tesis.de> - initial API and implementation
- *******************************************************************************/
-package org.eclipse.fx.emf.edit.ui;
-
-import javafx.beans.value.ObservableValue;
-import javafx.beans.value.ObservableValueBase;
-import javafx.scene.control.TableColumn;
-import javafx.scene.control.TableColumn.CellDataFeatures;
-import javafx.util.Callback;
-
-/**
- * A cell value factory that simply forwards {@link CellDataFeatures#getValue()} as an {@link ObservableValue}.
- */
-public class ProxyCellValueFactory<S, T> implements Callback<TableColumn.CellDataFeatures<S, T>, ObservableValue<T>> {
-
- @Override
- public ObservableValue<T> call(final CellDataFeatures<S, T> features) {
-
- //TODO add notifications on update
-
- return new ObservableValueBase<T>() {
-
- @Override
- @SuppressWarnings("unchecked")
- public T getValue() {
- return (T) features.getValue();
- }
-
- };
-
- }
-
+/*******************************************************************************
+ * Copyright (c) 2012 TESIS DYNAware GmbH 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:
+ * Torsten Sommer <torsten.sommer@tesis.de> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.fx.emf.edit.ui;
+
+import javafx.beans.value.ObservableValue;
+import javafx.beans.value.ObservableValueBase;
+import javafx.scene.control.TableColumn;
+import javafx.scene.control.TableColumn.CellDataFeatures;
+import javafx.util.Callback;
+
+/**
+ * A cell value factory that simply forwards {@link CellDataFeatures#getValue()} as an {@link ObservableValue}
+ * .
+ */
+public class ProxyCellValueFactory<S, T> implements Callback<TableColumn.CellDataFeatures<S, T>, ObservableValue<T>> {
+
+ @Override
+ public ObservableValue<T> call(final CellDataFeatures<S, T> features) {
+
+ // TODO add notifications on update
+
+ return new ObservableValueBase<T>() {
+
+ @Override
+ @SuppressWarnings("unchecked")
+ public T getValue() {
+ return (T) features.getValue();
+ }
+
+ };
+
+ }
+
} \ No newline at end of file

Back to the top