Package de.xima.fc.entities
Class ProjektZaehlerDaten
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.ProjektZaehlerDaten
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,IMandantDependent
,IProjektDependent
,ITransferable
,ITransferableEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class ProjektZaehlerDaten extends AbstractEntity implements IMandantDependent, IProjektDependent
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_AUFRUFE
static String
ATTR_DATUM
static String
ATTR_EINGAENGE
static String
ATTR_FEHLER
static String
ATTR_JAHR
static String
ATTR_MONAT
static String
ATTR_STUNDE
static String
ATTR_TAG
-
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
-
Fields inherited from interface de.xima.fc.entities.interfaces.IMandantDependent
ATTR_MANDANT, COL_CLIENT_ID
-
Fields inherited from interface de.xima.fc.entities.interfaces.IProjektDependent
ATTR_PROJEKT
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
-
Constructor Summary
Constructors Constructor Description ProjektZaehlerDaten()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAufruf()
void
addEingang()
void
addFehler()
long
getAufrufe()
Date
getDatum()
long
getEingaenge()
long
getFehler()
Long
getId()
int
getJahr()
Mandant
getMandant()
int
getMonat()
Projekt
getProjekt()
int
getStunde()
int
getTag()
void
initDateValues(Date date)
void
setAufrufe(long aufrufe)
void
setDatum(Date datum)
void
setEingaenge(long eingaenge)
void
setFehler(long fehler)
void
setJahr(int jahr)
void
setMandant(Mandant mandant)
void
setMonat(int monat)
void
setProjekt(Projekt projekt)
void
setStunde(int stunde)
void
setTag(int tag)
-
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId, setId
-
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
ATTR_DATUM
public static final String ATTR_DATUM
- See Also:
- Constant Field Values
-
ATTR_STUNDE
public static final String ATTR_STUNDE
- See Also:
- Constant Field Values
-
ATTR_TAG
public static final String ATTR_TAG
- See Also:
- Constant Field Values
-
ATTR_MONAT
public static final String ATTR_MONAT
- See Also:
- Constant Field Values
-
ATTR_JAHR
public static final String ATTR_JAHR
- See Also:
- Constant Field Values
-
ATTR_AUFRUFE
public static final String ATTR_AUFRUFE
- See Also:
- Constant Field Values
-
ATTR_EINGAENGE
public static final String ATTR_EINGAENGE
- See Also:
- Constant Field Values
-
ATTR_FEHLER
public static final String ATTR_FEHLER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMandant
public Mandant getMandant()
- Specified by:
getMandant
in interfaceIMandantDependent
-
setMandant
public void setMandant(Mandant mandant)
- Specified by:
setMandant
in interfaceIMandantDependent
-
setProjekt
public void setProjekt(Projekt projekt)
- Specified by:
setProjekt
in interfaceIProjektDependent
-
getProjekt
public Projekt getProjekt()
- Specified by:
getProjekt
in interfaceIProjektDependent
-
getDatum
public Date getDatum()
- Returns:
- the datum
-
setDatum
public void setDatum(Date datum)
- Parameters:
datum
- the datum to set
-
getStunde
public int getStunde()
- Returns:
- the stunde
-
setStunde
public void setStunde(int stunde)
- Parameters:
stunde
- the stunde to set
-
getTag
public int getTag()
- Returns:
- the tag
-
setTag
public void setTag(int tag)
- Parameters:
tag
- the tag to set
-
getMonat
public int getMonat()
- Returns:
- the monat
-
setMonat
public void setMonat(int monat)
- Parameters:
monat
- the monat to set
-
getJahr
public int getJahr()
- Returns:
- the jahr
-
setJahr
public void setJahr(int jahr)
- Parameters:
jahr
- the jahr to set
-
getAufrufe
public long getAufrufe()
- Returns:
- the aufrufe
-
setAufrufe
public void setAufrufe(long aufrufe)
- Parameters:
aufrufe
- the aufrufe to set
-
getEingaenge
public long getEingaenge()
- Returns:
- the eingaenge
-
setEingaenge
public void setEingaenge(long eingaenge)
- Parameters:
eingaenge
- the eingaenge to set
-
getFehler
public long getFehler()
- Returns:
- the fehler
-
setFehler
public void setFehler(long fehler)
- Parameters:
fehler
- the fehler to set
-
addFehler
public void addFehler()
-
addEingang
public void addEingang()
-
addAufruf
public void addAufruf()
-
initDateValues
public void initDateValues(Date date)
-
-