hello as I declare a table of strings in all java testss and functions , is it possible de declare it once in an interface and to call it anywhere ?
public interface string {
string[] mytab = new string[2];
}
in the java class :
public class Test { }
How can I call the inetrface to say :
if (mytab[1].equals("toto")){}