Declare two classes from eachother.
- by tumba25
I'm writing a app in NetBeans. I have two classes MyApp_View and MyApp_Functions.
The MyApp_View class starts like this
public class MyApp_View extends FrameView {
MyApp_Functions My_functions = new MyApp_Functions();
public MyApp_View(SingleFrameApplication app) {
super(app);
In MyApp_Functions I have
MyApp_View my_view = new MyApp_View(null);
I want to access the public variables in MyApp_View from MyApp_Functions and the public methods in functions from view, but have no success with this.
Is this doable? And how?