org.nuiton.topiatest
Interface Personne

All Superinterfaces:
Party2, Serializable, org.nuiton.topia.persistence.TopiaEntity
All Known Subinterfaces:
Employe
All Known Implementing Classes:
EmployeAbstract, EmployeImpl, PersonneAbstract, PersonneImpl

public interface Personne
extends Party2


Field Summary
static String PROPERTY_ADDRESS
           
static String PROPERTY_GENDER
           
static String PROPERTY_NAME
           
static String PROPERTY_OTHER_GENDER
           
static String PROPERTY_OTHER_NAMES
           
static String 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
 
Method Summary
 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 :
 Gender getGender()
          getGender :
 String getName()
          getName :
 Gender getOtherGender()
          getOtherGender :
 Collection<String> getOtherNames()
          getOtherNames : Retourne la collection.
 Collection<Title> getTitle()
          getTitle : Retourne la collection.
 boolean isOtherNamesEmpty()
          isOtherNamesEmpty : Retourne true si la collection otherNames est vide.
 boolean isTitleEmpty()
          isTitleEmpty : Retourne true si la collection title est vide.
 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 : Retourne le nombre d'éléments de la collection otherNames
 int sizeTitle()
          sizeTitle : Retourne le nombre d'éléments de la collection title
 
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
accept, addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, getAggregate, getComposite, getTopiaCreateDate, getTopiaId, getTopiaVersion, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaCreateDate, setTopiaId, setTopiaVersion
 

Field Detail

PROPERTY_NAME

static final String PROPERTY_NAME
See Also:
Constant Field Values

PROPERTY_OTHER_NAMES

static final String PROPERTY_OTHER_NAMES
See Also:
Constant Field Values

PROPERTY_GENDER

static final String PROPERTY_GENDER
See Also:
Constant Field Values

PROPERTY_OTHER_GENDER

static final String PROPERTY_OTHER_GENDER
See Also:
Constant Field Values

PROPERTY_ADDRESS

static final String PROPERTY_ADDRESS
See Also:
Constant Field Values

PROPERTY_TITLE

static final String PROPERTY_TITLE
See Also:
Constant Field Values
Method Detail

setName

void setName(String name)
setName :

Parameters:
name - La valeur de l'attribut à positionner.

getName

String getName()
getName :

Returns:
String

addOtherNames

void addOtherNames(String otherNames)
addOtherNames :

Parameters:
otherNames - L'instance de java.lang.String à ajouter

addAllOtherNames

void addAllOtherNames(Collection<String> otherNames)
addAllOtherNames :

Parameters:
otherNames - Les instances de java.lang.String à ajouter

setOtherNames

void setOtherNames(Collection<String> otherNames)
setOtherNames :

Parameters:
otherNames - La valeur de l'attribut à positionner.

removeOtherNames

void removeOtherNames(String otherNames)
removeOtherNames :

Parameters:
otherNames - L'instance de java.lang.String à retirer

clearOtherNames

void clearOtherNames()
clearOtherNames :


getOtherNames

Collection<String> getOtherNames()
getOtherNames : Retourne la collection.

Returns:
Collection

sizeOtherNames

int sizeOtherNames()
sizeOtherNames : Retourne le nombre d'éléments de la collection otherNames

Returns:
int

isOtherNamesEmpty

boolean isOtherNamesEmpty()
isOtherNamesEmpty : Retourne true si la collection otherNames est vide.

Returns:
boolean

setGender

void setGender(Gender gender)
setGender :

Parameters:
gender - La valeur de l'attribut à positionner.

getGender

Gender getGender()
getGender :

Returns:
Gender

setOtherGender

void setOtherGender(Gender otherGender)
setOtherGender :

Parameters:
otherGender - La valeur de l'attribut à positionner.

getOtherGender

Gender getOtherGender()
getOtherGender :

Returns:
Gender

setAddress

void setAddress(Address address)
setAddress :

Parameters:
address - La valeur de l'attribut à positionner.

getAddress

Address getAddress()
getAddress :

Returns:
Address

addTitle

void addTitle(Title title)
addTitle :

Parameters:
title - L'instance de org.nuiton.topiatest.Title à ajouter

addAllTitle

void addAllTitle(Collection<Title> title)
addAllTitle :

Parameters:
title - Les instances de org.nuiton.topiatest.Title à ajouter

setTitle

void setTitle(Collection<Title> title)
setTitle :

Parameters:
title - La valeur de l'attribut à positionner.

removeTitle

void removeTitle(Title title)
removeTitle :

Parameters:
title - L'instance de org.nuiton.topiatest.Title à retirer

clearTitle

void clearTitle()
clearTitle :


getTitle

Collection<Title> getTitle()
getTitle : Retourne la collection.

Returns:
Collection</DL> </DD> </DL> <HR> <A NAME="sizeTitle()"><!-- --></A><H3> sizeTitle</H3> <PRE> int <B>sizeTitle</B>()</PRE> <DL> <DD>sizeTitle : Retourne le nombre d'éléments de la collection title <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>int</DL> </DD> </DL> <HR> <A NAME="isTitleEmpty()"><!-- --></A><H3> isTitleEmpty</H3> <PRE> boolean <B>isTitleEmpty</B>()</PRE> <DL> <DD>isTitleEmpty : Retourne <code>true</code> si la collection title est vide. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>boolean</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/Personne.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/NaturalizedEntityImpl.html" title="class in org.nuiton.topiatest"><B>PREV CLASS</B></A>   <A HREF="../../../org/nuiton/topiatest/PersonneAbstract.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/Personne.html" target="_top"><B>FRAMES</B></A>    <A HREF="Personne.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> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <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>