org.nuiton.topiatest
Class PersonneAbstract

java.lang.Object
  extended by org.nuiton.topia.persistence.TopiaEntityAbstract
      extended by org.nuiton.topiatest.deletetest.Party2Abstract
          extended by org.nuiton.topiatest.deletetest.Party2Impl
              extended by org.nuiton.topiatest.PersonneAbstract
All Implemented Interfaces:
Serializable, org.nuiton.topia.persistence.TopiaEntity, Party2, Personne
Direct Known Subclasses:
PersonneImpl

public abstract class PersonneAbstract
extends Party2Impl
implements Personne

See Also:
Serialized Form

Field Summary
protected  Address address
          Nom de l'attribut en BD : address
protected  Gender gender
          Nom de l'attribut en BD : gender
protected  String name
          Nom de l'attribut en BD : name
protected  Gender otherGender
          Nom de l'attribut en BD : otherGender
protected  Collection<String> otherNames
          Nom de l'attribut en BD : otherNames
protected  Collection<Title> title
          Nom de l'attribut en BD : title
 
Fields inherited from class org.nuiton.topiatest.deletetest.Party2Abstract
contacts
 
Fields inherited from class org.nuiton.topia.persistence.TopiaEntityAbstract
readListeners, readVetoables, topiaContext, topiaCreateDate, topiaId, topiaVersion, writeListeners, writeVetoables
 
Fields inherited from interface org.nuiton.topiatest.Personne
PROPERTY_ADDRESS, PROPERTY_GENDER, PROPERTY_NAME, PROPERTY_OTHER_GENDER, PROPERTY_OTHER_NAMES, PROPERTY_TITLE
 
Fields inherited from interface org.nuiton.topiatest.deletetest.Party2
PROPERTY_CONTACTS
 
Fields inherited from interface org.nuiton.topia.persistence.TopiaEntity
AGGREGATE, COMPOSITE, TOPIA_CREATE_DATE, TOPIA_ID, TOPIA_VERSION
 
Constructor Summary
PersonneAbstract()
           
 
Method Summary
 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 addAllOtherNames(Collection<String> otherNames)
          addAllOtherNames :
 void addAllTitle(Collection<Title> title)
          addAllTitle :
 void addOtherNames(String otherNames)
          addOtherNames :
 void addTitle(Title title)
          addTitle :
 void clearOtherNames()
          clearOtherNames :
 void clearTitle()
          clearTitle :
 Address getAddress()
          getAddress :
 List<org.nuiton.topia.persistence.TopiaEntity> getAggregate()
          getAggregate :
 List<org.nuiton.topia.persistence.TopiaEntity> getComposite()
          getComposite :
 Gender getGender()
          getGender :
 String getName()
          getName :
 Gender getOtherGender()
          getOtherGender :
 Collection<String> getOtherNames()
          getOtherNames :
 Collection<Title> getTitle()
          getTitle :
 boolean isOtherNamesEmpty()
          isOtherNamesEmpty :
 boolean isTitleEmpty()
          isTitleEmpty :
 void removeOtherNames(String otherNames)
          removeOtherNames :
 void removeTitle(Title title)
          removeTitle :
 void setAddress(Address address)
          setAddress :
 void setGender(Gender gender)
          setGender :
 void setName(String name)
          setName :
 void setOtherGender(Gender otherGender)
          setOtherGender :
 void setOtherNames(Collection<String> otherNames)
          setOtherNames :
 void setTitle(Collection<Title> title)
          setTitle :
 int sizeOtherNames()
          sizeOtherNames :
 int sizeTitle()
          sizeTitle :
 String toString()
          toString :
 
Methods inherited from class org.nuiton.topiatest.deletetest.Party2Abstract
addAllContacts, addContacts, clearContacts, getContacts, getContactsByTopiaId, isContactsEmpty, removeContacts, setContacts, sizeContacts
 
Methods inherited from class org.nuiton.topia.persistence.TopiaEntityAbstract
addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, equals, fireOnPostRead, fireOnPostRead, fireOnPostWrite, fireOnPostWrite, fireOnPreRead, fireOnPreWrite, getReadPropertyChangeSupport, getReadVetoableChangeSupport, getTopiaContext, getTopiaCreateDate, getTopiaId, getTopiaVersion, getWritePropertyChangeSupport, getWriteVetoableChangeSupport, hashCode, 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 org.nuiton.topiatest.deletetest.Party2
addAllContacts, addContacts, clearContacts, getContacts, getContactsByTopiaId, isContactsEmpty, removeContacts, setContacts, sizeContacts
 
Methods inherited from interface org.nuiton.topia.persistence.TopiaEntity
addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, getTopiaCreateDate, getTopiaId, getTopiaVersion, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaCreateDate, setTopiaId, setTopiaVersion
 

Field Detail

name

protected String name
Nom de l'attribut en BD : name


otherNames

protected Collection<String> otherNames
Nom de l'attribut en BD : otherNames


gender

protected Gender gender
Nom de l'attribut en BD : gender


otherGender

protected Gender otherGender
Nom de l'attribut en BD : otherGender


address

protected Address address
Nom de l'attribut en BD : address


title

protected Collection<Title> title
Nom de l'attribut en BD : title

Constructor Detail

PersonneAbstract

public PersonneAbstract()
Method Detail

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
Overrides:
accept in class Party2Abstract
Parameters:
visitor - le visiteur de l'entite.
Throws:
org.nuiton.topia.TopiaException

setName

public void setName(String name)
setName :

Specified by:
setName in interface Personne
Parameters:
name -

getName

public String getName()
getName :

Specified by:
getName in interface Personne
Returns:
String

addOtherNames

public void addOtherNames(String otherNames)
addOtherNames :

Specified by:
addOtherNames in interface Personne
Parameters:
otherNames -

addAllOtherNames

public void addAllOtherNames(Collection<String> otherNames)
addAllOtherNames :

Specified by:
addAllOtherNames in interface Personne
Parameters:
otherNames -

setOtherNames

public void setOtherNames(Collection<String> otherNames)
setOtherNames :

Specified by:
setOtherNames in interface Personne
Parameters:
otherNames -

removeOtherNames

public void removeOtherNames(String otherNames)
removeOtherNames :

Specified by:
removeOtherNames in interface Personne
Parameters:
otherNames -

clearOtherNames

public void clearOtherNames()
clearOtherNames :

Specified by:
clearOtherNames in interface Personne

getOtherNames

public Collection<String> getOtherNames()
getOtherNames :

Specified by:
getOtherNames in interface Personne
Returns:
Collection

sizeOtherNames

public int sizeOtherNames()
sizeOtherNames :

Specified by:
sizeOtherNames in interface Personne
Returns:
int

isOtherNamesEmpty

public boolean isOtherNamesEmpty()
isOtherNamesEmpty :

Specified by:
isOtherNamesEmpty in interface Personne
Returns:
boolean

setGender

public void setGender(Gender gender)
setGender :

Specified by:
setGender in interface Personne
Parameters:
gender -

getGender

public Gender getGender()
getGender :

Specified by:
getGender in interface Personne
Returns:
Gender

setOtherGender

public void setOtherGender(Gender otherGender)
setOtherGender :

Specified by:
setOtherGender in interface Personne
Parameters:
otherGender -

getOtherGender

public Gender getOtherGender()
getOtherGender :

Specified by:
getOtherGender in interface Personne
Returns:
Gender

setAddress

public void setAddress(Address address)
setAddress :

Specified by:
setAddress in interface Personne
Parameters:
address -

getAddress

public Address getAddress()
getAddress :

Specified by:
getAddress in interface Personne
Returns:
Address

addTitle

public void addTitle(Title title)
addTitle :

Specified by:
addTitle in interface Personne
Parameters:
title -

addAllTitle

public void addAllTitle(Collection<Title> title)
addAllTitle :

Specified by:
addAllTitle in interface Personne
Parameters:
title -

setTitle

public void setTitle(Collection<Title> title)
setTitle :

Specified by:
setTitle in interface Personne
Parameters:
title -

removeTitle

public void removeTitle(Title title)
removeTitle :

Specified by:
removeTitle in interface Personne
Parameters:
title -

clearTitle

public void clearTitle()
clearTitle :

Specified by:
clearTitle in interface Personne

getTitle

public Collection<Title> getTitle()
getTitle :

Specified by:
getTitle in interface Personne
Returns:
Collection</DL> </DD> </DL> <HR> <A NAME="sizeTitle()"><!-- --></A><H3> sizeTitle</H3> <PRE> public int <B>sizeTitle</B>()</PRE> <DL> <DD>sizeTitle : <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/nuiton/topiatest/Personne.html#sizeTitle()">sizeTitle</A></CODE> in interface <CODE><A HREF="../../../org/nuiton/topiatest/Personne.html" title="interface in org.nuiton.topiatest">Personne</A></CODE></DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>int</DL> </DD> </DL> <HR> <A NAME="isTitleEmpty()"><!-- --></A><H3> isTitleEmpty</H3> <PRE> public boolean <B>isTitleEmpty</B>()</PRE> <DL> <DD>isTitleEmpty : <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/nuiton/topiatest/Personne.html#isTitleEmpty()">isTitleEmpty</A></CODE> in interface <CODE><A HREF="../../../org/nuiton/topiatest/Personne.html" title="interface in org.nuiton.topiatest">Personne</A></CODE></DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>boolean</DL> </DD> </DL> <HR> <A NAME="getAggregate()"><!-- --></A><H3> getAggregate</H3> <PRE> public <A HREF="http://download.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A><org.nuiton.topia.persistence.TopiaEntity> <B>getAggregate</B>() throws org.nuiton.topia.TopiaException</PRE> <DL> <DD>getAggregate : <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE>getAggregate</CODE> in interface <CODE>org.nuiton.topia.persistence.TopiaEntity</CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../org/nuiton/topiatest/deletetest/Party2Abstract.html#getAggregate()">getAggregate</A></CODE> in class <CODE><A HREF="../../../org/nuiton/topiatest/deletetest/Party2Abstract.html" title="class in org.nuiton.topiatest.deletetest">Party2Abstract</A></CODE></DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>List<TopiaEntity> <DT><B>Throws:</B> <DD><CODE>org.nuiton.topia.TopiaException</CODE></DL> </DD> </DL> <HR> <A NAME="getComposite()"><!-- --></A><H3> getComposite</H3> <PRE> public <A HREF="http://download.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A><org.nuiton.topia.persistence.TopiaEntity> <B>getComposite</B>() throws org.nuiton.topia.TopiaException</PRE> <DL> <DD>getComposite : <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE>getComposite</CODE> in interface <CODE>org.nuiton.topia.persistence.TopiaEntity</CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../org/nuiton/topiatest/deletetest/Party2Abstract.html#getComposite()">getComposite</A></CODE> in class <CODE><A HREF="../../../org/nuiton/topiatest/deletetest/Party2Abstract.html" title="class in org.nuiton.topiatest.deletetest">Party2Abstract</A></CODE></DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>List<TopiaEntity> <DT><B>Throws:</B> <DD><CODE>org.nuiton.topia.TopiaException</CODE></DL> </DD> </DL> <HR> <A NAME="toString()"><!-- --></A><H3> toString</H3> <PRE> public <A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>toString</B>()</PRE> <DL> <DD>toString : <P> <DD><DL> <DT><B>Overrides:</B><DD><CODE><A HREF="../../../org/nuiton/topiatest/deletetest/Party2Abstract.html#toString()">toString</A></CODE> in class <CODE><A HREF="../../../org/nuiton/topiatest/deletetest/Party2Abstract.html" title="class in org.nuiton.topiatest.deletetest">Party2Abstract</A></CODE></DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>String</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev">  <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PersonneAbstract.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../org/nuiton/topiatest/Personne.html" title="interface in org.nuiton.topiatest"><B>PREV CLASS</B></A>   <A HREF="../../../org/nuiton/topiatest/PersonneDAO.html" title="class in org.nuiton.topiatest"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/nuiton/topiatest/PersonneAbstract.html" target="_top"><B>FRAMES</B></A>    <A HREF="PersonneAbstract.html" target="_top"><B>NO FRAMES</B></A>    <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright © 2004-2011 <a href="http://www.codelutin.com/">CodeLutin</a>. All Rights Reserved. </BODY> </HTML>