martes, 22 de noviembre de 2011

"AUTO-GENERACIÓN DE CÓDIGO MEDIANTE UMBRELLO"

Clase Cliente

/**
 * Class clientes
 */
public class clientes {

  //
  // Fields
  //

  private String nombre;
  private String apellidos;
 
  //
  // Constructors
  //
  public clientes () { };
 
  //
  // Methods
  //


  //
  // Accessor methods
  //

  /**
   * Set the value of nombre
   * @param newVar the new value of nombre
   */
  private void setNombre ( String newVar ) {
    nombre = newVar;
  }

  /**
   * Get the value of nombre
   * @return the value of nombre
   */
  private String getNombre ( ) {
    return nombre;
  }

  /**
   * Set the value of apellidos
   * @param newVar the new value of apellidos
   */
  private void setApellidos ( String newVar ) {
    apellidos = newVar;
  }

  /**
   * Get the value of apellidos
   * @return the value of apellidos
   */
  private String getApellidos ( ) {
    return apellidos;
  }

  //
  // Other methods
  //

}


Clase aerolineas

/**
 * Class aerolineas
 */
public class aerolineas {

  //
  // Fields
  //

  public String empresa;
  public String avion;
 
  //
  // Constructors
  //
  public aerolineas () { };
 
  //
  // Methods
  //


  //
  // Accessor methods
  //

  /**
   * Set the value of empresa
   * @param newVar the new value of empresa
   */
  public void setEmpresa ( String newVar ) {
    empresa = newVar;
  }

  /**
   * Get the value of empresa
   * @return the value of empresa
   */
  public String getEmpresa ( ) {
    return empresa;
  }

  /**
   * Set the value of avion
   * @param newVar the new value of avion
   */
  public void setAvion ( String newVar ) {
    avion = newVar;
  }

  /**
   * Get the value of avion
   * @return the value of avion
   */
  public String getAvion ( ) {
    return avion;
  }

  //
  // Other methods
  //

}


clase destinos

/**
 * Class destinos
 */
public class destinos {

  //
  // Fields
  //

  public short precio;
  private String destino;
 
  //
  // Constructors
  //
  public destinos () { };
 
  //
  // Methods
  //


  //
  // Accessor methods
  //

  /**
   * Set the value of precio
   * @param newVar the new value of precio
   */
  public void setPrecio ( short newVar ) {
    precio = newVar;
  }

  /**
   * Get the value of precio
   * @return the value of precio
   */
  public short getPrecio ( ) {
    return precio;
  }

  /**
   * Set the value of destino
   * @param newVar the new value of destino
   */
  private void setDestino ( String newVar ) {
    destino = newVar;
  }

  /**
   * Get the value of destino
   * @return the value of destino
   */
  private String getDestino ( ) {
    return destino;
  }

  //
  // Other methods
  //

}


clase reservaciones

/**
 * Class reservaciones
 */
public class reservaciones {

  //
  // Fields
  //

  public clientes nombre;
  public clientes apellidos;
  public aerolineas empresa;
  public destinos destino;
 
  //
  // Constructors
  //
  public reservaciones () { };
 
  //
  // Methods
  //


  //
  // Accessor methods
  //

  /**
   * Set the value of nombre
   * @param newVar the new value of nombre
   */
  public void setNombre ( clientes newVar ) {
    nombre = newVar;
  }

  /**
   * Get the value of nombre
   * @return the value of nombre
   */
  public clientes getNombre ( ) {
    return nombre;
  }

  /**
   * Set the value of apellidos
   * @param newVar the new value of apellidos
   */
  public void setApellidos ( clientes newVar ) {
    apellidos = newVar;
  }

  /**
   * Get the value of apellidos
   * @return the value of apellidos
   */
  public clientes getApellidos ( ) {
    return apellidos;
  }

  /**
   * Set the value of empresa
   * @param newVar the new value of empresa
   */
  public void setEmpresa ( aerolineas newVar ) {
    empresa = newVar;
  }

  /**
   * Get the value of empresa
   * @return the value of empresa
   */
  public aerolineas getEmpresa ( ) {
    return empresa;
  }

  /**
   * Set the value of destino
   * @param newVar the new value of destino
   */
  public void setDestino ( destinos newVar ) {
    destino = newVar;
  }

  /**
   * Get the value of destino
   * @return the value of destino
   */
  public destinos getDestino ( ) {
    return destino;
  }

  //
  // Other methods
  //

}


No hay comentarios:

Publicar un comentario