le type imbriqué ne peut pas cacher un type englobant

Que fait cette erreur signifie?

Imbriquée de type HelloWorld ne peut pas cacher un enfermant type

Où HelloWorld est la java de nom de fichier. Voici le code si vous en avez besoin:

import net.java.games.jogl.*;
public class HelloWorld
{ //open HelloWorld

    public class HelloWorld
    { //open HelloWorld

        public static void main (String args[])
        { //open main
            try
            { //open try
                System.loadLibrary("jogl");
                System.out.println("Hello World! (The native libraries are installed.)");
            } //close try
            catch (Exception e) //all try's need a catch
            { } //even if the catch does nothing
        } //close main

    } //close HelloWorld

);

source d'informationauteur user1204570