Can u show me the code what u have made ...
Just see this example ...
public class Sample
{
public getMethod()
{
String super = "";
System.out.println(super);
}
public static void main (String args[0])
{
System.out.println(super);
}
If u try to access the variable super in the main method the n u will get the error what u faced ... so try to declare the varibale globally ...