View Javadoc

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: IProjectContainer.java
13   * Created: 2007-00-00
14   * Author: kpietak
15   * $Id: IProjectContainer.java 3020 2009-07-17 14:41:19Z kpietak $
16   */
17  
18  package pl.edu.agh.cast.backward.resources;
19  
20  import java.util.List;
21  
22  import pl.edu.agh.cast.model.visual.backward.IDiagram;
23  
24  /**
25   * Helper interface for exporter/importer, used to embed list of {@link IDiagram} objects and project name.
26   *
27   * @author AGH CAST Team
28   */
29  public interface IProjectContainer {
30  
31  	/**
32  	 * Returns project name.
33  	 *
34  	 * @return project name
35  	 */
36  	public String getProjectName();
37  
38  	/**
39  	 * Returns list of project diagrams.
40  	 *
41  	 * @return list of project diagrams
42  	 */
43  	public List<IDiagram> getDiagrams();
44  
45  }