/* * 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 TestIdentityAction extends fUML.Syntax.Actions.BasicActions.Action { public fUML.Syntax.Actions.BasicActions.InputPin second = null; public fUML.Syntax.Actions.BasicActions.OutputPin result = null; public fUML.Syntax.Actions.BasicActions.InputPin first = null; public void setFirst(fUML.Syntax.Actions.BasicActions.InputPin first) { super.addInput(first); this.first = first; } // setFirst public void setSecond(fUML.Syntax.Actions.BasicActions.InputPin second) { super.addInput(second); this.second = second; } // setSecond public void setResult(fUML.Syntax.Actions.BasicActions.OutputPin result) { super.addOutput(result); this.result = result; } // setResult } // TestIdentityAction