Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Java
Comment on design
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="JScoobyCed, post: 614751"] What about: public interface GapListener { public void updateGap(); } public class GapManager implements GapListener { public void setGap(Gap gap) { // ... gap.setGapListener(this); doLayout(); } public void updateGap() { doLayout(); } } public class NewGap extends Gap { // or maybe if you own the Gap object simply: // public class Gap { private static GapListener gapListener = null; public static void setGapListener(GapListener gapListener) { this.gapListener = gapListener; } public static void setXXX(XXX xxx) { // do XXX stuff here if(gapListener != null) { gapListener.updateGap(); } } } [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Java
Comment on design
Top