Hello,
I have 3 files a.java b,java (a class with comms functions) and c.java (the program GUI) in different packages.
object a and object b are created in a.java.
I want to get input from the GUI in c.java and call a method in b.java with the input.
The object b does not seem to be visible to c.java even though it has been created by a.java
My aim is to keep certain parts of...