Once again I have come to a halt I am in the proccess of tracking down the answer, but if someone here could save me some time that would be splendid.
PrintEvent's (for the record I have already imported the PrintEvent class) syntax is like this..
I have encased mine in the 'try' statment.Code:new PrintEvent(method(args));
My only question is how do I tell java WHERE to PrintEvent(); also, what syntax do I use to do so.
Just in case you need it here's mine:
Code:
PrintEvent pe = null;
paraM = newObj(paraM);
try {
bw.write(paraM);
pe = new PrintEvent(newObj(paraM));
} catch (IOException ioe) {
}

