Bugs item #1286620, was opened at 2005-09-10 17:49 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1286620&group_id=119783
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: 1.1 Status: Open Resolution: None Priority: 5 Submitted By: Martijn Dashorst (dashorst) Assigned to: Nobody/Anonymous (nobody) Summary: AttributeModifer can't be shared between components Initial Comment: The current implementation prohibits sharing attribute modifiers between components, even though it doesn't check for it. This is due to the linked list implementation of AttributeModifier that mixes component hierarchies when an AM is added to two components. component1.add(am1).add(am2); component2.add(am2).add(am3); will lead to the following linked list(s): component1 -> am2 component2 -> am3 -> am2 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1286620&group_id=119783 ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
