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: FigureProvider.java
13 * Created: 2007-00-00
14 * Author: cast
15 * $Id: FigureProvider.java 2892 2009-05-22 10:14:10Z apohllo $
16 */
17
18 package pl.edu.agh.cast.backward.editor;
19
20 import java.util.List;
21 import java.util.Map;
22
23 import org.eclipse.core.resources.IFile;
24 import org.eclipse.draw2d.IFigure;
25 import org.eclipse.gef.GraphicalEditPart;
26
27
28 /**
29 * Figure provider for diagram export (as an image).
30 *
31 * @author AGH CAST Team
32 */
33 public class FigureProvider /*extends AbstractFigureProvider*/ {
34
35 /**
36 * {@inheritDoc}
37 *
38 * @see de.unikassel.imageexport.providers.FigureProvider
39 * #provideExportImageFigures(org.eclipse.core.resources.IFile)
40 */
41 public Map<IFigure, String> provideExportImageFigures(IFile diagramFile) {
42 return null;
43 }
44
45 /**
46 * {@inheritDoc}
47 *
48 * @see de.unikassel.imageexport.providers.AbstractFigureProvider#provideExportImageFigures(java.util.List)
49 */
50 // @Override
51 // public List<IFigure> provideExportImageFigures(List<GraphicalEditPart> editParts) {
52 // return super.provideExportImageFigures(editParts);
53 // }
54
55 }