MisGastos
Class Gasto

java.lang.Object
  extended byMisGastos.Gasto
All Implemented Interfaces:
Persistent

public class Gasto
extends java.lang.Object
implements Persistent

Author:
JP

Constructor Summary
Gasto()
          Creates a new instance of Gasto
 
Method Summary
 java.lang.String getFecha()
           
 java.lang.String getGasto()
           
 int getMonto()
           
 byte[] persist()
          Called to persist an object.
 void resurrect(byte[] data)
          Called to resurrect a persistent object.
 void setFecha(java.lang.String pFecha)
           
 void setGasto(java.lang.String pGasto)
           
 void setMonto(int pMonto)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Gasto

public Gasto()
Creates a new instance of Gasto

Method Detail

getGasto

public java.lang.String getGasto()

setGasto

public void setGasto(java.lang.String pGasto)

getMonto

public int getMonto()

setMonto

public void setMonto(int pMonto)

getFecha

public java.lang.String getFecha()

setFecha

public void setFecha(java.lang.String pFecha)

persist

public byte[] persist()
               throws java.io.IOException
Description copied from interface: Persistent
Called to persist an object.

Specified by:
persist in interface Persistent
Throws:
java.io.IOException

resurrect

public void resurrect(byte[] data)
               throws java.io.IOException
Description copied from interface: Persistent
Called to resurrect a persistent object.

Specified by:
resurrect in interface Persistent
Throws:
java.io.IOException