Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.tabbedproperties.uml/generated/org/eclipse/papyrus/tabbedproperties/uml/parts/ProfileApplicationPropertiesEditionPart.java')
-rw-r--r--extraplugins/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.tabbedproperties.uml/generated/org/eclipse/papyrus/tabbedproperties/uml/parts/ProfileApplicationPropertiesEditionPart.java122
1 files changed, 122 insertions, 0 deletions
diff --git a/extraplugins/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.tabbedproperties.uml/generated/org/eclipse/papyrus/tabbedproperties/uml/parts/ProfileApplicationPropertiesEditionPart.java b/extraplugins/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.tabbedproperties.uml/generated/org/eclipse/papyrus/tabbedproperties/uml/parts/ProfileApplicationPropertiesEditionPart.java
new file mode 100644
index 00000000000..1c189ff035f
--- /dev/null
+++ b/extraplugins/deprecated-plugins/uml.deprecated/org.eclipse.papyrus.tabbedproperties.uml/generated/org/eclipse/papyrus/tabbedproperties/uml/parts/ProfileApplicationPropertiesEditionPart.java
@@ -0,0 +1,122 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Obeo.
+ * 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:
+ * Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.papyrus.tabbedproperties.uml.parts;
+
+// Start of user code for imports
+
+import java.util.List;
+import java.util.Map;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EReference;
+import org.eclipse.jface.viewers.ViewerFilter;
+
+// End of user code
+
+/**
+ * @author <a href="mailto:jerome.benois@obeo.fr">Jerome Benois</a>
+ */
+public interface ProfileApplicationPropertiesEditionPart {
+
+ /**
+ * @return the ownedComment to add
+ */
+ public List getOwnedCommentToAdd();
+
+ /**
+ * @return the ownedComment to remove
+ */
+ public List getOwnedCommentToRemove();
+
+ /**
+ * @return the ownedComment to move
+ */
+ public List getOwnedCommentToMove();
+
+ /**
+ * @return the ownedComment to edit
+ */
+ public Map getOwnedCommentToEdit();
+
+ /**
+ * @return the current ownedComment table
+ */
+ public List getOwnedCommentTable();
+
+ /**
+ * Init the ownedComment
+ *
+ * @param current
+ * the current value
+ * @param containgFeature
+ * the feature where to navigate if necessary
+ * @param feature
+ * the feature to manage
+ */
+ public void initOwnedComment(EObject current, EReference containingFeature, EReference feature);
+
+ /**
+ * Update the ownedComment
+ *
+ * @param newValue
+ * the ownedComment to update
+ */
+ public void updateOwnedComment(EObject newValue);
+
+ /**
+ * Adds the given filter to the ownedComment edition editor.
+ *
+ * @param filter
+ * a viewer filter
+ * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter)
+ */
+ public void addFilterToOwnedComment(ViewerFilter filter);
+
+ /**
+ * Adds the given filter to the ownedComment edition editor.
+ *
+ * @param filter
+ * a viewer filter
+ * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter)
+ */
+ public void addBusinessFilterToOwnedComment(ViewerFilter filter);
+
+ /**
+ * @return true if the given element is contained inside the ownedComment table
+ */
+ public boolean isContainedInOwnedCommentTable(EObject element);
+
+
+
+
+
+ /**
+ * @return the isStrict
+ */
+ public Boolean getIsStrict();
+
+ /**
+ * Defines a new isStrict
+ *
+ * @param newValue
+ * the new isStrict to set
+ */
+ public void setIsStrict(Boolean newValue);
+
+
+
+
+
+ // Start of user code for additional methods
+
+ // End of user code
+
+}

Back to the top