> I'm curious how one deals with large GUI based Swing applications
> using NetBeans? Typically from my understanding you use a model-view-
[quoted text clipped - 8 lines]
> to do it with NetBeans and not manually without NetBeans. I know you
> can write the code yourself without it. Thanks in advance!
Write your model class, and then specify an instance of it
in the "model" field of the property sheet of the JWhatever.
Two JFrames (or in Jeneral, two JWhats) usually shouldn't
talk to each other anyhow. Instead, they should talk to the
same model instance: frame F1 updates some value in the model,
and F2 learns about it because it's listening for model changes.
F2 never knows (nor should it need to know) that the change was
caused by something F1 did; as far as F2 is concerned, the model
might have decided to make the change on its own initiative,
after a timer expired or something.

Signature
Eric Sosman
esosman@ieee-dot-org.invalid