Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOEditorInput.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOEditorInput.java96
1 files changed, 48 insertions, 48 deletions
diff --git a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOEditorInput.java b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOEditorInput.java
index 4e87367260..2b49cefb29 100644
--- a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOEditorInput.java
+++ b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOEditorInput.java
@@ -1,48 +1,48 @@
-/*
- * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) 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:
- * Victor Roldan Betancort - initial API and implementation
- * Eike Stepper - maintenance
- */
-package org.eclipse.emf.cdo.ui;
-
-import org.eclipse.emf.cdo.view.CDOView;
-
-import org.eclipse.ui.IEditorInput;
-
-/**
- * An specialized {@link org.eclipse.ui.IEditorInput IEditorInput} for the CDO editor. A <code>CDOEditorInput</code> is
- * associated with a {@link org.eclipse.emf.cdo.eresource.CDOResource CDOResource}, accessed through a
- * {@link org.eclipse.emf.cdo.view.CDOView CDOView} instance.
- * <p>
- * For related operations, see
- * {@link org.eclipse.emf.cdo.ui.CDOEditorUtil#createCDOEditorInput(CDOView, String, boolean) CDOEditorUtil}
- *
- * @author Victor Roldan Betancort
- * @since 2.0
- * @see org.eclipse.ui.IEditorInput
- * @see org.eclipse.emf.cdo.ui.CDOEditorUtil
- * @see org.eclipse.emf.cdo.view.CDOView
- */
-public interface CDOEditorInput extends IEditorInput
-{
- /**
- * Returns the CDOView associated with this CDOEditorInput
- */
- public CDOView getView();
-
- /**
- * Returns true if the CDO editor instance is responsible for the underlying org.eclipse.emf.cdo.view.CDOView
- */
- public boolean isViewOwned();
-
- /**
- * Returns the path to the
- */
- public String getResourcePath();
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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:
+ * Victor Roldan Betancort - initial API and implementation
+ * Eike Stepper - maintenance
+ */
+package org.eclipse.emf.cdo.ui;
+
+import org.eclipse.emf.cdo.view.CDOView;
+
+import org.eclipse.ui.IEditorInput;
+
+/**
+ * An specialized {@link org.eclipse.ui.IEditorInput IEditorInput} for the CDO editor. A <code>CDOEditorInput</code> is
+ * associated with a {@link org.eclipse.emf.cdo.eresource.CDOResource CDOResource}, accessed through a
+ * {@link org.eclipse.emf.cdo.view.CDOView CDOView} instance.
+ * <p>
+ * For related operations, see
+ * {@link org.eclipse.emf.cdo.ui.CDOEditorUtil#createCDOEditorInput(CDOView, String, boolean) CDOEditorUtil}
+ *
+ * @author Victor Roldan Betancort
+ * @since 2.0
+ * @see org.eclipse.ui.IEditorInput
+ * @see org.eclipse.emf.cdo.ui.CDOEditorUtil
+ * @see org.eclipse.emf.cdo.view.CDOView
+ */
+public interface CDOEditorInput extends IEditorInput
+{
+ /**
+ * Returns the CDOView associated with this CDOEditorInput
+ */
+ public CDOView getView();
+
+ /**
+ * Returns true if the CDO editor instance is responsible for the underlying org.eclipse.emf.cdo.view.CDOView
+ */
+ public boolean isViewOwned();
+
+ /**
+ * Returns the path to the
+ */
+ public String getResourcePath();
+}

Back to the top