I have imported the class from my jar file with import enji.lep.Msg;
In my new class (Chat) I want to use a "public void" function from the Msg class imported. the Msg.class haz this public void in it:
public void logEnable(String pName, String pVer) {
logThis(Msg.oeli + pName + " Edition " + pVer + " enabled.");
}
And in my Chat.class I imported the class which contains logEnable() but I can't do
logEnable(pName, pVer);
Am I doing it wrong? How should I do? :/