Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Modelo;
- /**
- *
- * @author PrSala408
- */
- public class Carrera {
- private String[] estaciones;
- private String nombre;
- public Carrera(String nombre){
- estaciones = new String[5];
- estaciones[0]="partida";
- estaciones[1]="100mts";
- estaciones[2]="200mts";
- estaciones[3]="300mts";
- estaciones[4]="400mts";
- }
- Carrera() {
- throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
- }
- public String getEstaciones(int i) {
- return estaciones[i];
- }
- public String getNombre() {
- return nombre;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment