Issue 13869: Error in ReadLinkActionActivation (fuml-ftf) Source: Model Driven Solutions (Mr. Ed Seidewitz, ed-s(at)modeldriven.com) Nature: Uncategorized Issue Severity: Summary: Specification: Semantics of a Foundational Subset for Executable UML Models, Beta 1 (ptc/2008-11-03) Section: 8.6.3.2.9 ReadLinkActionActivation In ReadLinkActionActivation::doAction, the code: if (endDataList.getValue(i).value == null) { openEnd = endDataList.getValue(i); } Should be changed to: if (endDataList.getValue(i-1).value == null) { openEnd = endDataList.getValue(i-1); } Resolution: Change the code as proposed Revised Text: In ReadLinkActionActivation::doAction, change: if (endDataList.getValue(i).value == null) { openEnd = endDataList.getValue(i); } to: if (endDataList.getValue(i-1).value == null) { openEnd = endDataList.getValue(i-1); } Actions taken: April 15, 2009: received issue July 23, 2010: closed issue Discussion: End of Annotations:===== ubject: Error in ReadLinkActionActivation Date: Wed, 15 Apr 2009 17:38:40 -0400 X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Error in ReadLinkActionActivation Thread-Index: Acm+EorJDhVo038dQRq0/KpwaGrzXA== From: "Ed Seidewitz" To: Specification: Semantics of a Foundational Subset for Executable UML Models, Beta 1 (ptc/2008-11-03) Section: 8.6.3.2.9 ReadLinkActionActivation In ReadLinkActionActivation::doAction, the code: if (endDataList.getValue(i).value == null) { openEnd = endDataList.getValue(i); } Should be changed to: if (endDataList.getValue(i-1).value == null) { openEnd = endDataList.getValue(i-1); }