Show EquipoIf.java syntax highlighted
package tk.sabreWulf.negest.entity.equipment;
import tk.sabreWulf.negest.entity.core.*;
/**
* The EquipoIf 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 EquipoIf {
/**
* Return the primary key.
*
* @return java.lang.Long he primary key.
*/
java.lang.Long getPrimaryKey();
/**
* Set the primary key.
*
* @param pk return java.lang.Long with the primary key.
*/
void setPrimaryKey(java.lang.Long pk);
/**
* Returns the value of the <code>idsede</code> (foreign key) property.
*
* @return the value of the <code>idsede</code> property.
*/
java.lang.Long getIdsede();
/**
* Sets the value of the <code>idsede</code> (foreign key) property.
*
* @param idsede a value for <code>idsede</code>.
*/
void setIdsede(java.lang.Long idsede);
/**
* 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>idsedeSede</code> relation property.
*
* @return the value of the <code>idsedeSede</code> relation property.
*/
SedeIf getIdsedeSede();
/**
* Sets the value of the <code>idsedeSede</code> relation property.
*
* @param sede a value for <code>idsedeSede</code>.
*/
void setIdsedeSede(SedeIf sede);
}
See more files for this project here
This project aims to offer the SOHO integrated platform to track their customers, the events generated by/with them, the orders and billing, warehouses, customer locations and equipment. Its a CMP/ERP, with its focus on water treatment business, for this
Project homepage:
http://sourceforge.net/projects/negest
Programming language(s): Java,XML
License: other
EquipoIf.java