]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/workbench/ResourceEditorPart2.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / ResourceEditorPart2.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.ui.workbench;
13
14 import org.simantics.db.event.ChangeListener;
15
16 /**
17  * ResourceEditorPart2 is a base implementation for editors that support
18  * {@link IResourceEditorInput2} style inputs for working on top of the
19  * Simantics graph database.
20  * 
21  * <p>
22  * If you want your ResourceEditorPart2 implementation to receive notifications
23  * for all graph change events through the {@link ChangeListener} interface,
24  * just implement it and it will be automatically invoked by this base
25  * implementation.
26  * </p>
27  * 
28  * @author Tuukka Lehtonen
29  * 
30  * @see ResourceEditorPart
31  */
32 public abstract class ResourceEditorPart2 extends ResourceEditorPart implements IResourceEditorPart2 {
33
34     @Override
35     public IResourceEditorInput2 getResourceInput2() {
36         return (IResourceEditorInput2) getEditorInput();
37     }
38
39 }