Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* @(#) Tatarifa.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tatarifa
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int tarifa;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double importe;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getTarifa()
|
||||
{
|
||||
return this.tarifa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tarifa
|
||||
* @return
|
||||
*/
|
||||
public void setTarifa(int tarifa)
|
||||
{
|
||||
this.tarifa = tarifa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getImporte()
|
||||
{
|
||||
return this.importe;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param importe
|
||||
* @return
|
||||
*/
|
||||
public void setImporte(double importe)
|
||||
{
|
||||
this.importe = importe;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user