Ok, here's the situation.
I've got a package filled with 4 .java files.
Mainpackage:
Console.java
ReadTextFile.java
WriteTextFile.java
Main.java
In Main.java, I'm trying to call a method within AQAReadTextFile2013.java, which also happens to be called "AQAReadTextFile2013".
I've tried calling it using the line:
* AQAReadTextFile2013.AQAReadTextFile2013("filepatharguement")
* AQAReadTextFIle2013("filepatharguement")
Within 'main', but they both give a 'symbol not found' error.
Any idea how to call this correctly?
I think it's a fundamental syntax error that i'm having an issue with, but I can't seem to find any help with this, as this is quite specific.
Sorry if the answer is obvious, I'm transitioning from C# to java and things seem a bit different here.
Thanks, Alex.