Uses of Class
edu.uoc.tfc.dbmodel.Factura

Packages that use Factura
edu.uoc.tfc.dbmodel   
edu.uoc.tfc.dbmodel.crud   
 

Uses of Factura in edu.uoc.tfc.dbmodel
 

Subclasses of Factura in edu.uoc.tfc.dbmodel
 class FacturaImpl
           
 

Methods in edu.uoc.tfc.dbmodel that return Factura
 Factura FacturaDao.create(Factura factura)
          Creates an instance of edu.uoc.tfc.dbmodel.Factura and adds it to the persistent store.
 Factura FacturaDaoBase.create(Factura factura)
           
 Factura FacturaDao.create(java.lang.String codiFactura, java.lang.String dataEmissio)
           Creates a new edu.uoc.tfc.dbmodel.Factura instance from all attributes and adds it to the persistent store.
 Factura FacturaDaoBase.create(java.lang.String codiFactura, java.lang.String dataEmissio)
           
 Factura FacturaDao.create(java.lang.String codiFactura, java.lang.String dataEmissio, Part partDeLaFactura)
           Creates a new edu.uoc.tfc.dbmodel.Factura instance from only required properties (attributes and association ends) and adds it to the persistent store.
 Factura FacturaDaoBase.create(java.lang.String codiFactura, java.lang.String dataEmissio, Part partDeLaFactura)
           
 Factura FacturaDao.facturaVOToEntity(FacturaVO facturaVO)
          Converts an instance of type FacturaVO to this DAO's entity.
 Factura FacturaDaoImpl.facturaVOToEntity(FacturaVO facturaVO)
           
 Factura FacturaDao.load(java.lang.Long id)
          Loads an instance of edu.uoc.tfc.dbmodel.Factura from the persistent store.
 Factura FacturaDaoBase.load(java.lang.Long id)
           
static Factura Factura.Factory.newInstance()
          Constructs a new instance of Factura.
static Factura Factura.Factory.newInstance(java.lang.String codiFactura, java.lang.String dataEmissio, Part partDeLaFactura)
          Constructs a new instance of Factura, taking all possible properties (except the identifier(s))as arguments.
 

Methods in edu.uoc.tfc.dbmodel with parameters of type Factura
 Factura FacturaDao.create(Factura factura)
          Creates an instance of edu.uoc.tfc.dbmodel.Factura and adds it to the persistent store.
 Factura FacturaDaoBase.create(Factura factura)
           
 java.lang.Object FacturaDao.create(int transform, Factura factura)
           Does the same thing as FacturaDao.create(edu.uoc.tfc.dbmodel.Factura) with an additional flag called transform.
 java.lang.Object FacturaDaoBase.create(int transform, Factura factura)
           
 void FacturaDao.facturaVOToEntity(FacturaVO source, Factura target, boolean copyIfNull)
          Copies the fields of FacturaVO to the specified entity.
 void FacturaDaoBase.facturaVOToEntity(FacturaVO source, Factura target, boolean copyIfNull)
           
 void FacturaDaoImpl.facturaVOToEntity(FacturaVO source, Factura target, boolean copyIfNull)
           
 void FacturaDao.remove(Factura factura)
          Removes the instance of edu.uoc.tfc.dbmodel.Factura from the persistent store.
 void FacturaDaoBase.remove(Factura factura)
           
 FacturaVO FacturaDao.toFacturaVO(Factura entity)
          Converts this DAO's entity to an object of type FacturaVO.
 FacturaVO FacturaDaoBase.toFacturaVO(Factura entity)
           
 FacturaVO FacturaDaoImpl.toFacturaVO(Factura entity)
           
 void FacturaDao.toFacturaVO(Factura source, FacturaVO target)
          Copies the fields of the specified entity to the target value object.
 void FacturaDaoBase.toFacturaVO(Factura source, FacturaVO target)
           
 void FacturaDaoImpl.toFacturaVO(Factura source, FacturaVO target)
           
 void FacturaDao.update(Factura factura)
          Updates the factura instance in the persistent store.
 void FacturaDaoBase.update(Factura factura)
           
 

Uses of Factura in edu.uoc.tfc.dbmodel.crud
 

Methods in edu.uoc.tfc.dbmodel.crud that return Factura
 Factura FacturaManageableDaoBase.create(java.lang.String codiFactura, java.lang.String dataEmissio, java.lang.Long id, java.lang.Long partDeLaFactura)
           
 Factura FacturaManageableDao.create(java.lang.String codiFactura, java.lang.String dataEmissio, java.lang.Long id, java.lang.Long partDeLaFactura)
           
 Factura FacturaManageableDaoBase.readById(java.lang.Long id)
           
 Factura FacturaManageableDao.readById(java.lang.Long id)
           
 Factura FacturaManageableDaoBase.update(java.lang.String codiFactura, java.lang.String dataEmissio, java.lang.Long id, java.lang.Long partDeLaFactura)
           
 Factura FacturaManageableDao.update(java.lang.String codiFactura, java.lang.String dataEmissio, java.lang.Long id, java.lang.Long partDeLaFactura)