fr.ifremer.isisfish.entities
Class EquationAbstract

java.lang.Object
  extended by org.nuiton.topia.persistence.TopiaEntityAbstract
      extended by fr.ifremer.isisfish.entities.EquationAbstract
All Implemented Interfaces:
Equation, Formule, java.io.Serializable, org.nuiton.topia.persistence.TopiaEntity
Direct Known Subclasses:
EquationImpl

public abstract class EquationAbstract
extends org.nuiton.topia.persistence.TopiaEntityAbstract
implements Equation

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.nuiton.topia.persistence.TopiaEntityAbstract
readListeners, readVetoables, topiaContext, topiaCreateDate, topiaId, topiaVersion, writeListeners, writeVetoables
 
Fields inherited from interface fr.ifremer.isisfish.entities.Equation
CATEGORY, CONTENT, JAVA_INTERFACE, LANGUAGE, NAME
 
Fields inherited from interface org.nuiton.topia.persistence.TopiaEntity
TOPIA_CREATE_DATE, TOPIA_ID, TOPIA_VERSION
 
Constructor Summary
EquationAbstract()
           
 
Method Summary
 java.util.List<org.nuiton.topia.persistence.TopiaEntity> accept()
          accept :
 void accept(org.nuiton.topia.persistence.EntityVisitor visitor)
          accept : Envoi via les methodes du visitor l'ensemble des champs de l'entity avec leur nom, type et valeur.
 void delete()
          delete :
 java.lang.String getCategory()
          getCategory :
 java.util.List<org.nuiton.topia.persistence.TopiaEntity> getComposite()
          getComposite :
 java.lang.String getContent()
          getContent :
 java.lang.Class getJavaInterface()
          getJavaInterface :
 java.lang.String getLanguage()
          getLanguage :
 java.lang.String getName()
          getName :
 void setCategory(java.lang.String value)
          setCategory :
 void setContent(java.lang.String value)
          setContent :
 void setJavaInterface(java.lang.Class value)
          setJavaInterface :
 void setLanguage(java.lang.String value)
          setLanguage :
 void setName(java.lang.String value)
          setName :
 java.lang.String toString()
          toString :
 void update()
          update :
 
Methods inherited from class org.nuiton.topia.persistence.TopiaEntityAbstract
addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, equals, fireOnPostRead, fireOnPostRead, fireOnPostWrite, fireOnPostWrite, fireOnPreRead, fireOnPreWrite, getAggregate, getTopiaContext, getTopiaCreateDate, getTopiaId, getTopiaVersion, hashCode, postCreate, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaContext, setTopiaCreateDate, setTopiaId, setTopiaVersion
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface fr.ifremer.isisfish.entities.Equation
evaluate, evaluate
 
Methods inherited from interface org.nuiton.topia.persistence.TopiaEntity
addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, getAggregate, getTopiaContext, getTopiaCreateDate, getTopiaId, getTopiaVersion, postCreate, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaCreateDate, setTopiaId, setTopiaVersion
 

Constructor Detail

EquationAbstract

public EquationAbstract()
Method Detail

update

public void update()
            throws org.nuiton.topia.TopiaException
update :

Specified by:
update in interface org.nuiton.topia.persistence.TopiaEntity
Overrides:
update in class org.nuiton.topia.persistence.TopiaEntityAbstract
Throws:
org.nuiton.topia.TopiaException

delete

public void delete()
            throws org.nuiton.topia.TopiaException
delete :

Specified by:
delete in interface org.nuiton.topia.persistence.TopiaEntity
Overrides:
delete in class org.nuiton.topia.persistence.TopiaEntityAbstract
Throws:
org.nuiton.topia.TopiaException

accept

public void accept(org.nuiton.topia.persistence.EntityVisitor visitor)
            throws org.nuiton.topia.TopiaException
accept : Envoi via les methodes du visitor l'ensemble des champs de l'entity avec leur nom, type et valeur.

Specified by:
accept in interface org.nuiton.topia.persistence.TopiaEntity
Parameters:
visitor - le visiteur de l'entite.
Throws:
org.nuiton.topia.TopiaException

accept

public java.util.List<org.nuiton.topia.persistence.TopiaEntity> accept()
                                                                throws org.nuiton.topia.TopiaException
accept :

Returns:
List
Throws:
org.nuiton.topia.TopiaException

getComposite

public java.util.List<org.nuiton.topia.persistence.TopiaEntity> getComposite()
                                                                      throws org.nuiton.topia.TopiaException
getComposite :

Specified by:
getComposite in interface org.nuiton.topia.persistence.TopiaEntity
Overrides:
getComposite in class org.nuiton.topia.persistence.TopiaEntityAbstract
Returns:
List
Throws:
org.nuiton.topia.TopiaException

setName

public void setName(java.lang.String value)
setName :

Specified by:
setName in interface Equation
Parameters:
value -

getName

public java.lang.String getName()
getName :

Specified by:
getName in interface Equation
Specified by:
getName in interface Formule
Returns:
String

setContent

public void setContent(java.lang.String value)
setContent :

Specified by:
setContent in interface Equation
Parameters:
value -

getContent

public java.lang.String getContent()
getContent :

Specified by:
getContent in interface Equation
Specified by:
getContent in interface Formule
Returns:
String

setCategory

public void setCategory(java.lang.String value)
setCategory :

Specified by:
setCategory in interface Equation
Parameters:
value -

getCategory

public java.lang.String getCategory()
getCategory :

Specified by:
getCategory in interface Equation
Specified by:
getCategory in interface Formule
Returns:
String

setLanguage

public void setLanguage(java.lang.String value)
setLanguage :

Specified by:
setLanguage in interface Equation
Parameters:
value -

getLanguage

public java.lang.String getLanguage()
getLanguage :

Specified by:
getLanguage in interface Equation
Returns:
String

setJavaInterface

public void setJavaInterface(java.lang.Class value)
setJavaInterface :

Specified by:
setJavaInterface in interface Equation
Parameters:
value -

getJavaInterface

public java.lang.Class getJavaInterface()
getJavaInterface :

Specified by:
getJavaInterface in interface Equation
Returns:
Class

toString

public java.lang.String toString()
toString :

Overrides:
toString in class java.lang.Object
Returns:
String


Copyright © 1999-2010 CodeLutin. All Rights Reserved.