/* * Initial version copyright 2008 Lockheed Martin Corporation, except * as stated in the file entitled Licensing-Information. * * All modifications copyright 2009-2012 Data Access Technologies, Inc. * * Licensed under the Academic Free License version 3.0 * (http://www.opensource.org/licenses/afl-3.0.php), except as stated * in the file entitled Licensing-Information. */ package fUML.Syntax.Actions.IntermediateActions; import fUML.Debug; import UMLPrimitiveTypes.*; public class LinkEndCreationData extends fUML.Syntax.Actions.IntermediateActions.LinkEndData { public boolean isReplaceAll = false; public fUML.Syntax.Actions.BasicActions.InputPin insertAt = null; public void setIsReplaceAll(boolean isReplaceAll) { this.isReplaceAll = isReplaceAll; } // setIsReplaceAll public void setInsertAt(fUML.Syntax.Actions.BasicActions.InputPin insertAt) { this.insertAt = insertAt; } // setInsertAt } // LinkEndCreationData