Coverage Report - org.argouml.uml.diagram.use_case.ui.FigInclude
 
Classes in this File Line Coverage Branch Coverage Complexity
FigInclude
0%
0/23
N/A
1
 
 1  
 /* $Id: FigInclude.java 17867 2010-01-12 20:47:04Z 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  
  *    mvw
 11  
  *****************************************************************************
 12  
  *
 13  
  * Some portions of this file was previously release using the BSD License:
 14  
  */
 15  
 
 16  
 // Copyright (c) 1996-2009 The Regents of the University of California. All
 17  
 // Rights Reserved. Permission to use, copy, modify, and distribute this
 18  
 // software and its documentation without fee, and without a written
 19  
 // agreement is hereby granted, provided that the above copyright notice
 20  
 // and this paragraph appear in all copies.  This software program and
 21  
 // documentation are copyrighted by The Regents of the University of
 22  
 // California. The software program and documentation are supplied "AS
 23  
 // IS", without any accompanying services from The Regents. The Regents
 24  
 // does not warrant that the operation of the program will be
 25  
 // uninterrupted or error-free. The end-user understands that the program
 26  
 // was developed for research purposes and is advised not to rely
 27  
 // exclusively on the program for any reason.  IN NO EVENT SHALL THE
 28  
 // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
 29  
 // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
 30  
 // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
 31  
 // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
 32  
 // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
 33  
 // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 34  
 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
 35  
 // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
 36  
 // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
 37  
 // UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 38  
 
 39  
 package org.argouml.uml.diagram.use_case.ui;
 40  
 
 41  
 import java.awt.Graphics;
 42  
 import java.awt.Rectangle;
 43  
 
 44  
 import org.argouml.uml.diagram.DiagramSettings;
 45  
 import org.argouml.uml.diagram.ui.FigEdgeModelElement;
 46  
 import org.argouml.uml.diagram.ui.FigSingleLineText;
 47  
 import org.argouml.uml.diagram.ui.PathItemPlacement;
 48  
 import org.tigris.gef.presentation.ArrowHeadGreater;
 49  
 import org.tigris.gef.presentation.Fig;
 50  
 
 51  
 
 52  
 /**
 53  
  * A fig for use with include relationships on use case diagrams.<p>
 54  
  *
 55  
  * Realised as a dotted line with an open arrow head and the label
 56  
  * <<include>> alongside a la stereotype.<p>
 57  
  *
 58  
  * @author Jeremy Bennett
 59  
  */
 60  
 public class FigInclude extends FigEdgeModelElement {
 61  
 
 62  
     /**
 63  
      * Serial version - generated by Eclipse for rev. 1.14
 64  
      */
 65  
     private static final long serialVersionUID = 6199364390483239154L;
 66  
 
 67  
     /*
 68  
      * Text fig to hold the <<include>> label
 69  
      */
 70  
     private FigSingleLineText label;
 71  
     
 72  0
     private ArrowHeadGreater endArrow = new ArrowHeadGreater();
 73  
 
 74  
     private void initialize() {
 75  
         // The <<include>> label.
 76  
         // It's not a true stereotype, so don't use the stereotype support
 77  0
         label.setTextColor(TEXT_COLOR);
 78  0
         label.setTextFilled(false);
 79  0
         label.setFilled(false);
 80  0
         label.setLineWidth(0);
 81  0
         label.setEditable(false);
 82  0
         label.setText("<<include>>");
 83  
         
 84  0
         addPathItem(label, new PathItemPlacement(this, label, 50, 10));
 85  
         
 86  
         // Make the line dashed
 87  
 
 88  0
         setDashed(true);
 89  
 
 90  
         // Add an arrow with an open arrow head
 91  
 
 92  0
         setDestArrowHead(endArrow);
 93  
 
 94  
         // Make the edge go between nearest points
 95  
 
 96  0
         setBetweenNearestPoints(true);    
 97  0
     }
 98  
 
 99  
     /**
 100  
      * Construct a fig owned by the given UML element with the provided render
 101  
      * settings.
 102  
      * @param edge owning UML element
 103  
      * @param settings rendering settings
 104  
      */
 105  
     public FigInclude(Object edge, DiagramSettings settings) {
 106  0
         super(edge, settings);
 107  0
         label = new FigSingleLineText(edge, new Rectangle(X0, Y0 + 20, 90, 20), 
 108  
                 settings, false);
 109  0
         initialize();
 110  0
     }
 111  
     
 112  
     /**
 113  
      * <p>Set a new fig to represent this edge.</p>
 114  
      *
 115  
      * <p>We invoke the superclass accessor. Then change aspects of the
 116  
      *   new fig that are not as we want. In this case to use dashed lines.</p>
 117  
      *
 118  
      * @param f  The fig to use.
 119  
      */
 120  
     @Override
 121  
     public void setFig(Fig f) {
 122  0
         super.setFig(f);
 123  0
         setDashed(true);
 124  0
     }
 125  
 
 126  
     /**
 127  
      * <p>Define whether the given fig can be edited (it can't).</p>
 128  
      *
 129  
      * @param f  The fig about which the enquiry is being made. Ignored in this
 130  
      *           implementation.
 131  
      *
 132  
      * @return   <code>false</code> under all circumstances.
 133  
      */
 134  
     @Override
 135  
     protected boolean canEdit(Fig f) {
 136  0
         return false;
 137  
     }
 138  
 
 139  
     /*
 140  
      * @see org.tigris.gef.presentation.Fig#paint(java.awt.Graphics)
 141  
      */
 142  
     @Override
 143  
     public void paint(Graphics g) {
 144  0
         endArrow.setLineColor(getLineColor());
 145  0
         super.paint(g);
 146  0
     }
 147  
 }
 148