Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SequenceDiagram |
|
| 1.0;1 |
1 | /* $Id: SequenceDiagram.java 17850 2010-01-12 19:53:35Z linus $ | |
2 | ***************************************************************************** | |
3 | * Copyright (c) 2009 Contributors - see below | |
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 | * tfmorris | |
11 | ***************************************************************************** | |
12 | * | |
13 | * Some portions of this file was previously release using the BSD License: | |
14 | */ | |
15 | ||
16 | // Copyright (c) 2009 Tom Morris and other contributors. | |
17 | // New BSD License | |
18 | ||
19 | package org.argouml.uml.diagram; | |
20 | ||
21 | /** | |
22 | * Interface to be implemented by UML Sequence Diagram implementations | |
23 | * | |
24 | * @author Tom Morris | |
25 | */ | |
26 | public interface SequenceDiagram extends ArgoDiagram { | |
27 | ||
28 | /** | |
29 | * @return the collaboration from the associated graph model | |
30 | */ | |
31 | public Object getCollaboration(); | |
32 | } |