Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/propertyeditor/MultiplicityPropertyEditorValidator.java')
-rw-r--r--deprecated/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/propertyeditor/MultiplicityPropertyEditorValidator.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/deprecated/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/propertyeditor/MultiplicityPropertyEditorValidator.java b/deprecated/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/propertyeditor/MultiplicityPropertyEditorValidator.java
deleted file mode 100644
index 8de15182f59..00000000000
--- a/deprecated/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/propertyeditor/MultiplicityPropertyEditorValidator.java
+++ /dev/null
@@ -1,43 +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.uml.properties.runtime.propertyeditor;
-
-import org.eclipse.papyrus.views.properties.runtime.propertyeditor.AbstractPropertyEditor;
-import org.eclipse.papyrus.views.properties.runtime.propertyeditor.IPropertyEditorTypeValidator;
-
-/**
- * Validator for the simple reference property editors
- */
-public class MultiplicityPropertyEditorValidator implements IPropertyEditorTypeValidator {
-
- /**
- * Creates a new SimpleReferencePropertyEditorValidator.
- */
- public MultiplicityPropertyEditorValidator() {
-
- }
-
- /**
- * {@inheritDoc}
- */
- public boolean isValidForValue(Object valueToEdit) {
- //FIXME additional checks to do here... multiplicity should be parseable!
- return true;
- }
-
- /**
- * {@inheritDoc}
- */
- public void setPropertyEditor(AbstractPropertyEditor editor) {
- }
-
-}

Back to the top