merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / molecular / AlignmentEditorInput.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.editor.molecular;
11
12
13 import org.eclipse.jface.resource.ImageDescriptor;
14 import org.eclipse.ui.IEditorInput;
15 import org.eclipse.ui.IPersistableElement;
16
17
18
19 /**
20 * @author pplitzner
21 * @author Ben Stöver
22 * @date 04.08.2014
23 */
24 public class AlignmentEditorInput implements IEditorInput {
25 private static final String name = "AlignmentEditor";
26
27
28 /* (non-Javadoc)
29 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
30 */
31 @Override
32 public Object getAdapter(Class adapter) {
33 // TODO Auto-generated method stub
34 return null;
35 }
36
37
38 /* (non-Javadoc)
39 * @see org.eclipse.ui.IEditorInput#exists()
40 */
41 @Override
42 public boolean exists() {
43 // TODO Auto-generated method stub
44 return false;
45 }
46
47
48 /* (non-Javadoc)
49 * @see org.eclipse.ui.IEditorInput#getImageDescriptor()
50 */
51 @Override
52 public ImageDescriptor getImageDescriptor() {
53 // TODO Auto-generated method stub
54 return null;
55 }
56
57
58 /* (non-Javadoc)
59 * @see org.eclipse.ui.IEditorInput#getName()
60 */
61 @Override
62 public String getName() {
63 return name;
64 }
65
66
67 /* (non-Javadoc)
68 * @see org.eclipse.ui.IEditorInput#getPersistable()
69 */
70 @Override
71 public IPersistableElement getPersistable() {
72 return null;
73 }
74
75
76 /* (non-Javadoc)
77 * @see org.eclipse.ui.IEditorInput#getToolTipText()
78 */
79 @Override
80 public String getToolTipText() {
81 return name;
82 }
83 }