fork download
  1. package institucion;
  2.  
  3. import java.io.BufferedReader;
  4. import java.io.IOException;
  5. import java.io.InputStreamReader;
  6. import java.util.ArrayList;
  7. import java.util.List;
  8.  
  9. public class Docente {
  10.  
  11. private String iddocente = null;
  12. private String nombredocente = null;
  13. private String apellidodocente = null;
  14. private int n = 0;
  15. private int i = 0;
  16. private String telefono = null;
  17. public List<String> materiasdocente = null;
  18.  
  19. BufferedReader lector = new BufferedReader(new InputStreamReader(System.in)); // Crear lector //
  20.  
  21. public void leer()throws IOException {
  22.  
  23. System.out.println("Nombre del docente: ");
  24. setNombredocente(lector.readLine());
  25.  
  26. }
  27.  
  28.  
  29. // -------------------- Metodos de Atributos ------------------- //
  30.  
  31. public String getNombredocente() {return nombredocente;}
  32. public void setNombredocente(String nombredocente) {this.nombredocente = nombredocente;}
  33.  
  34. public String getApellidodocente() {return apellidodocente;}
  35. public void setApellidodocente(String apellidodocente) {this.apellidodocente = apellidodocente;}
  36.  
  37. public String getId() {return iddocente;}
  38. public void setId(String iddocente) {this.iddocente = iddocente;}
  39. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:9: error: class Docente is public, should be declared in a file named Docente.java
public class Docente {
       ^
1 error
stdout
Standard output is empty