// $Id: FigSubsystem.java 41 2010-04-03 20:04:12Z marcusvnac $ // Copyright (c) 1996-2009 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.uml.diagram.static_structure.ui; import java.awt.Polygon; import java.awt.Rectangle; import org.argouml.uml.diagram.DiagramSettings; import org.tigris.gef.graph.GraphModel; import org.tigris.gef.presentation.FigPoly; /** Class to display graphics for a UML subsystem in a class diagram. */ public class FigSubsystem extends FigPackage { private FigPoly figPoly = new FigPoly(LINE_COLOR, SOLID_FILL_COLOR); /** * Constructor. * * @param modelElement * Subsystem model element for which Fig is to be created. * @param x * initial X coordinate * @param y * initial Y coordinate * @deprecated for 0.27.3 by tfmorris. Use * {@link #FigSubsystem(Object, Rectangle, DiagramSettings)}. */ @SuppressWarnings("deprecation") @Deprecated public FigSubsystem(Object modelElement, int x, int y) { super(modelElement, x, y); constructFigs(); } private void constructFigs() { int[] xpoints = {125, 125, 130, 130, 130, 135, 135}; int[] ypoints = {45, 40, 40, 35, 40, 40, 45}; Polygon polygon = new Polygon(xpoints, ypoints, 7); figPoly.setPolygon(polygon); figPoly.setFilled(false); addFig(figPoly); Rectangle r = getBounds(); setBounds(r.x, r.y, r.width, r.height); updateEdges(); } /** * Constructor that hooks the Fig to a UML element * @param gm ignored * @param node the UML element * @deprecated for 0.27.3 by tfmorris. Use * {@link #FigSubsystem(Object, Rectangle, DiagramSettings)}. */ @Deprecated public FigSubsystem(@SuppressWarnings("unused") GraphModel gm, Object node) { this(node, 0, 0); } /** * Construct a Subsystem fig. * * @param owner owning UML element * @param bounds position and size * @param settings render settings */ public FigSubsystem(Object owner, Rectangle bounds, DiagramSettings settings) { super(owner, bounds, settings); constructFigs(); } /* * @see org.tigris.gef.presentation.Fig#setBounds(int, int, int, int) */ @Override protected void setStandardBounds(int x, int y, int w, int h) { if (figPoly != null) { Rectangle oldBounds = getBounds(); figPoly.translate((x - oldBounds.x) + (w - oldBounds.width), y - oldBounds.y); } super.setStandardBounds(x, y, w, h); } }