what does this error mean?

Does anyone understand what this error means? Error: Cannot resolve symbol variable super How do you implement the solution into the error?
[153 byte] By [Shermina] at [2007-10-3 0:09:24]
# 1
You should post your code.Super is a keyword of Java.Using Super you can call Superclass constructor.Read Inheritance.
asif_need_javaa at 2007-7-14 16:58:27 > top of Java-index,Java Essentials,Java Programming...
# 2
> You should post your code.> Super is a keyword of Java.> Using Super you can call Superclass constructor.> Read Inheritance.<nitpicker>super, not Super...</nitpicker>
TheLoosera at 2007-7-14 16:58:27 > top of Java-index,Java Essentials,Java Programming...
# 3
Thanks Looser.Sorry for my mistake.
asif_need_javaa at 2007-7-14 16:58:27 > top of Java-index,Java Essentials,Java Programming...
# 4
> Thanks Looser.Sorry for my mistake.I nitpickely tell you you磖e welcome.;-)
TheLoosera at 2007-7-14 16:58:27 > top of Java-index,Java Essentials,Java Programming...
# 5

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 ...

rao81a at 2007-7-14 16:58:27 > top of Java-index,Java Essentials,Java Programming...