Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FigClassifierBoxWithAttributes |
|
| 1.0;1 |
1 | /* $Id: FigClassifierBoxWithAttributes.java 17753 2010-01-11 19:49:55Z linus $ | |
2 | ******************************************************************************* | |
3 | * Copyright (c) 2010 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 | * Michiel van der Wulp | |
11 | * Bob Tarling | |
12 | ******************************************************************************* | |
13 | * | |
14 | * Some portions of this file were previously release using the BSD License: | |
15 | */ | |
16 | // $Id: FigClassifierBoxWithAttributes.java 17753 2010-01-11 19:49:55Z linus $ | |
17 | // Copyright (c) 2008-2009 The Regents of the University of California. All | |
18 | // Rights Reserved. Permission to use, copy, modify, and distribute this | |
19 | // software and its documentation without fee, and without a written | |
20 | // agreement is hereby granted, provided that the above copyright notice | |
21 | // and this paragraph appear in all copies. This software program and | |
22 | // documentation are copyrighted by The Regents of the University of | |
23 | // California. The software program and documentation are supplied "AS | |
24 | // IS", without any accompanying services from The Regents. The Regents | |
25 | // does not warrant that the operation of the program will be | |
26 | // uninterrupted or error-free. The end-user understands that the program | |
27 | // was developed for research purposes and is advised not to rely | |
28 | // exclusively on the program for any reason. IN NO EVENT SHALL THE | |
29 | // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, | |
30 | // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, | |
31 | // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF | |
32 | // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF | |
33 | // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY | |
34 | // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
35 | // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE | |
36 | // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF | |
37 | // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, | |
38 | // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | |
39 | ||
40 | package org.argouml.uml.diagram.static_structure.ui; | |
41 | ||
42 | import java.awt.Rectangle; | |
43 | ||
44 | import org.argouml.uml.diagram.AttributesCompartmentContainer; | |
45 | import org.argouml.uml.diagram.DiagramSettings; | |
46 | ||
47 | /** | |
48 | * A Fig for a ClassifierBox that adds an attributes compartment. | |
49 | * | |
50 | * @author Michiel | |
51 | * @deprecated in 0.29.3 by Bob Tarling use FigClassifierBox. | |
52 | */ | |
53 | @Deprecated | |
54 | public abstract class FigClassifierBoxWithAttributes extends FigClassifierBox | |
55 | implements AttributesCompartmentContainer { | |
56 | ||
57 | /** | |
58 | * Construct a Fig with owner, bounds, and settings. | |
59 | * | |
60 | * @param owner the model element that owns this fig | |
61 | * @param bounds the rectangle defining the bounds | |
62 | * @param settings the rendering settings | |
63 | */ | |
64 | public FigClassifierBoxWithAttributes(Object owner, Rectangle bounds, | |
65 | DiagramSettings settings) { | |
66 | 0 | super(owner, bounds, settings); |
67 | 0 | } |
68 | } |