Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/views/modelexplorer/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/core/ui/pagebookview/CorePage.java')
-rw-r--r--plugins/views/modelexplorer/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/core/ui/pagebookview/CorePage.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/plugins/views/modelexplorer/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/core/ui/pagebookview/CorePage.java b/plugins/views/modelexplorer/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/core/ui/pagebookview/CorePage.java
new file mode 100644
index 00000000000..1786db747c9
--- /dev/null
+++ b/plugins/views/modelexplorer/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/core/ui/pagebookview/CorePage.java
@@ -0,0 +1,78 @@
+/*****************************************************************************
+ * Copyright (c) 2010 LIFL & 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:
+ * Cedric Dumoulin (LIFL) cedric.dumoulin@lifl.fr - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.core.ui.pagebookview;
+
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Text;
+import org.eclipse.ui.IWorkbenchPart;
+import org.eclipse.ui.part.Page;
+
+
+/**
+ * @author dumoulin
+ *
+ */
+public class CorePage extends Page {
+
+ /**
+ * The default ui
+ */
+ private Text text;
+
+ private IWorkbenchPart part;
+
+
+ /**
+ * Constructor.
+ *
+ */
+ public CorePage(IWorkbenchPart part) {
+ this.part = part;
+ }
+
+ /**
+ * @see org.eclipse.ui.part.Page#createControl(org.eclipse.swt.widgets.Composite)
+ *
+ * @param parent
+ */
+ @Override
+ public void createControl(Composite parent) {
+ text = new Text(parent, SWT.CENTER);
+
+ text.setMessage("page for " + part.getTitle());
+ }
+
+ /**
+ * @see org.eclipse.ui.part.Page#getControl()
+ *
+ * @return
+ */
+ @Override
+ public Control getControl() {
+ return text;
+ }
+ /**
+ * @see org.eclipse.ui.part.Page#setFocus()
+ *
+ */
+ @Override
+ public void setFocus() {
+ // TODO Auto-generated method stub
+
+ }
+
+}

Back to the top