ConceptoIf.java from Negest at Krugle
Show ConceptoIf.java syntax highlighted
package tk.sabreWulf.negest.entity.invoicing;
import tk.sabreWulf.negest.entity.invoicing.*;
import tk.sabreWulf.negest.entity.warehouse.*;
/**
* The ConceptoIf interfaces exposes the persistence data.
*
* @author Jose Manuel Molina Pascual Sabre Wulf
* @version $Revision: 1.4 $, $Date: 2005/06/29 20:56:26 $
*/
public interface ConceptoIf {
/**
* Return the composite primary key.
*
* @return tk.sabreWulf.negest.entity.invoicing.ConceptoPK with the primary key.
*/
tk.sabreWulf.negest.entity.invoicing.ConceptoPK getPrimaryKey();
/**
* Set the composite primary key.
*
* @param pk tk.sabreWulf.negest.entity.invoicing.ConceptoPK with the composite primary key.
*/
void setPrimaryKey(tk.sabreWulf.negest.entity.invoicing.ConceptoPK pk);
/**
* Returns the value of the <code>facturaid</code> (foreign key) property.
*
* @return the value of the <code>facturaid</code> property.
*/
java.lang.Long getFacturaid();
/**
* Sets the value of the <code>facturaid</code> (foreign key) property.
*
* @param facturaid a value for <code>facturaid</code>.
*/
void setFacturaid(java.lang.Long facturaid);
/**
* Returns the value of the <code>idversionarticulo</code> (foreign key) property.
*
* @return the value of the <code>idversionarticulo</code> property.
*/
java.lang.Long getIdversionarticulo();
/**
* Sets the value of the <code>idversionarticulo</code> (foreign key) property.
*
* @param idversionarticulo a value for <code>idversionarticulo</code>.
*/
void setIdversionarticulo(java.lang.Long idversionarticulo);
/**
* Returns the value of the <code>id</code> property.
*
* @return the value of the <code>id</code> property
*/
java.lang.Long getId();
/**
* Sets the value of the <code>id</code> property.
*
* @param id the value for the <code>id</code> property
*/
void setId(java.lang.Long id);
/**
* Returns the value of the <code>concepto</code> property.
*
* @return the value of the <code>concepto</code> property
*/
java.lang.String getConcepto();
/**
* Sets the value of the <code>concepto</code> property.
*
* @param concepto the value for the <code>concepto</code> property
*/
void setConcepto(java.lang.String concepto);
/**
* Returns the value of the <code>cantidad</code> property.
*
* @return the value of the <code>cantidad</code> property
*/
java.lang.Integer getCantidad();
/**
* Sets the value of the <code>cantidad</code> property.
*
* @param cantidad the value for the <code>cantidad</code> property
*/
void setCantidad(java.lang.Integer cantidad);
/**
* Returns the value of the <code>impuesto</code> property.
*
* @return the value of the <code>impuesto</code> property
*/
java.lang.Integer getImpuesto();
/**
* Sets the value of the <code>impuesto</code> property.
*
* @param impuesto the value for the <code>impuesto</code> property
*/
void setImpuesto(java.lang.Integer impuesto);
/**
* Returns the value of the <code>valor</code> property.
*
* @return the value of the <code>valor</code> property
*/
java.lang.Double getValor();
/**
* Sets the value of the <code>valor</code> property.
*
* @param valor the value for the <code>valor</code> property
*/
void setValor(java.lang.Double valor);
/**
* Returns the value of the <code>observaciones</code> property.
*
* @return the value of the <code>observaciones</code> property
*/
java.lang.String getObservaciones();
/**
* Sets the value of the <code>observaciones</code> property.
*
* @param observaciones the value for the <code>observaciones</code> property
*/
void setObservaciones(java.lang.String observaciones);
/**
* Returns the value of the <code>facturaidFactura</code> relation property.
*
* @return the value of the <code>facturaidFactura</code> relation property.
*/
FacturaIf getFacturaidFactura();
/**
* Sets the value of the <code>facturaidFactura</code> relation property.
*
* @param factura a value for <code>facturaidFactura</code>.
*/
void setFacturaidFactura(FacturaIf factura);
/**
* Returns the value of the <code>idversionarticuloVersionarticulo</code> relation property.
*
* @return the value of the <code>idversionarticuloVersionarticulo</code> relation property.
*/
VersionarticuloIf getIdversionarticuloVersionarticulo();
/**
* Sets the value of the <code>idversionarticuloVersionarticulo</code> relation property.
*
* @param versionarticulo a value for <code>idversionarticuloVersionarticulo</code>.
*/
void setIdversionarticuloVersionarticulo(VersionarticuloIf versionarticulo);
}
See more files for this project here