Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/deprecated-plugins/core.deprecated/org.eclipse.papyrus.views.properties.tabbed.customization/src/org/eclipse/papyrus/views/properties/tabbed/customization/state/IntegerStateBeanPropertyEditorController.java')
-rw-r--r--deprecated/deprecated-plugins/core.deprecated/org.eclipse.papyrus.views.properties.tabbed.customization/src/org/eclipse/papyrus/views/properties/tabbed/customization/state/IntegerStateBeanPropertyEditorController.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/deprecated/deprecated-plugins/core.deprecated/org.eclipse.papyrus.views.properties.tabbed.customization/src/org/eclipse/papyrus/views/properties/tabbed/customization/state/IntegerStateBeanPropertyEditorController.java b/deprecated/deprecated-plugins/core.deprecated/org.eclipse.papyrus.views.properties.tabbed.customization/src/org/eclipse/papyrus/views/properties/tabbed/customization/state/IntegerStateBeanPropertyEditorController.java
deleted file mode 100644
index 6f506cea56c..00000000000
--- a/deprecated/deprecated-plugins/core.deprecated/org.eclipse.papyrus.views.properties.tabbed.customization/src/org/eclipse/papyrus/views/properties/tabbed/customization/state/IntegerStateBeanPropertyEditorController.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2010 CEA LIST.
- *
- * 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:
- * Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
- *****************************************************************************/
-package org.eclipse.papyrus.views.properties.tabbed.customization.state;
-
-
-
-/**
- * Controller for states for customization wizard with boolean values
- */
-public class IntegerStateBeanPropertyEditorController extends StateBeanPropertyEditorController {
-
- /** identifier for this controller */
- public final static String ID = "integerStateBeanPropertyEditorController";
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected void setValueInModel(Object value) {
- if(value instanceof String) {
- super.setValueInModel(Integer.parseInt((String)value));
- }
- }
-
-
-}

Back to the top