1 /***
2 * DependencyDetails.java
3 *
4 * Project: Dependency Tool
5 *
6 * WHEN WHO WHAT
7 * 06.06.2003 pko initial public release
8 * 29.07.2002 ctr creation
9 *
10 * Copyright 2003 ELCA Informatique SA
11 * Av. de la Harpe 22-24, 1000 Lausanne 13, Switzerland
12 * www.elca.ch
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public License
16 * as published by the Free Software Foundation; either version 2.1 of
17 * the License, or (at your option) any later version.
18 *
19 * This library is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
27 * USA
28 */
29
30 package ch.elca.dependency.gui;
31
32 import att.grappa.Edge;
33
34 /***
35 * Interface for showing the dependency details for the desired edge.<br>
36 * This interface is implemented by a dialog which shows the involved classes
37 * and the type of the dependency. This can be either uses, extends or
38 * implements.
39 *
40 * @author Christoph Trutmann
41 * @version 1.0-beta
42 */
43 public interface DependencyDetails {
44
45 /***
46 * Set the current dependency edge and show the informations.
47 *
48 * @param currentEdge Edge to set as current.
49 */
50 public void showDetails(Edge currentEdge);
51 }
This page was automatically generated by Maven