Package api

Examples of api.EjemploChico


  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    EjemploChico oE1 = new EjemploChico ();
    oE1.setApellido("Perico");
    oE1.setNombre("Perez");
    EjemploChico oE2 = new EjemploChico ();
    oE2.setApellido("Perica");
    oE2.setNombre("Perez");
    EjemploChico oE3 = oE1;
    oE3.setApellido("Perico");
    oE3.setNombre("Perez");
   
    System.out.println("oE1 " + oE1);
    System.out.println("oE2 " + oE2);
    System.out.println("oE3 " + oE3);
   
View Full Code Here

TOP

Related Classes of api.EjemploChico

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.