Created
January 15, 2011 08:01
-
-
Save txominpelu/780775 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Clase original: | |
package com.proyecto.prueba; | |
import java.util.*; | |
public class HolaMundo { | |
/** | |
* @param args | |
*/ | |
public static void miAntiguoMain(String[] args) { | |
System.out.println("Hola Mundo."); | |
} | |
public void miMetodo() { | |
MiClaseGenerica<String> a = new MiClaseGenerica<String>(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment