Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the most efficient method of implementing a shared data object between multiple JInternalFrames on a single JDesktopPane?

Not sure whether to go with singleton or can I put a data object in the JDesktopPane and access from a component? I don't want to keep separate instances of this data for each frame (lots of frames)

share|improve this question

1 Answer

up vote 1 down vote accepted

I would steer clear of singleton (as it's a-kin to using global variables - See here for a description) and instead subclass JInternalFrame to contain a reference to the shared data object; e.g.

public class MyInternalFrame extends JInternalFrame {
  private final SharedData data;

  public MyInternalFrame(SharedData data) {
    this.data = data;
  }
}

Obviously despite having multiple references to your SharedData (one per MyInternalFrame instance) there is still only one SharedData object in your system; i.e. you are not duplicating data with this approach.

share|improve this answer
A very nice solution, thanks. – rutherford Feb 17 '10 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.