1 /*
2 * This file is a part of CAST project.
3 * (c) Copyright 2007, AGH University of Science & Technology
4 * https://caribou.iisg.agh.edu.pl/trac/cast
5 *
6 * Licensed under the Eclipse Public License, Version 1.0 (the "License").
7 * You may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 * http://www.eclipse.org/legal/epl-v10.html
10 */
11 /*
12 * File: IDiagramEditorInput.java
13 * Created: 2007-00-00
14 * Author: awos
15 * $Id: IDiagramEditorInput.java 3020 2009-07-17 14:41:19Z kpietak $
16 */
17
18 package pl.edu.agh.cast.backward.resources;
19
20 import pl.edu.agh.cast.model.visual.backward.IDiagram;
21
22 /**
23 * Interface of editor input provider in form of a Diagram.
24 *
25 * @author AGH CAST Team
26 */
27 public interface IDiagramEditorInput {
28
29 /**
30 * Returns the diagram.
31 *
32 * @return the diagram.
33 */
34 public IDiagram getDiagram();
35
36 }