org.chorem.pollen.business.persistence
Interface PersonList

All Superinterfaces:
org.nuiton.topia.persistence.TopiaEntity
All Known Implementing Classes:
PersonListAbstract, PersonListImpl

public interface PersonList
extends org.nuiton.topia.persistence.TopiaEntity


Field Summary
static java.lang.String NAME
           
static java.lang.String OWNER
           
static java.lang.String POLL_ACCOUNT
           
 
Method Summary
 void addAllPollAccount(java.util.List<PollAccount> pollAccount)
           
 void addPollAccount(PollAccount pollAccount)
           
 void clearPollAccount()
          Vide la Collection de pollAccount.
 java.lang.String getName()
           
 UserAccount getOwner()
           
 java.util.List<PollAccount> getPollAccount()
           
 PollAccount getPollAccountByTopiaId(java.lang.String topiaId)
          Recupère l'attribut pollAccount à partir de son topiaId.
 boolean isPollAccountEmpty()
           
 void removePollAccount(PollAccount pollAccount)
           
 void setName(java.lang.String name)
           
 void setOwner(UserAccount owner)
           
 void setPollAccount(java.util.List<PollAccount> pollAccount)
           
 int sizePollAccount()
           
 
Methods inherited from interface org.nuiton.topia.persistence.TopiaEntity
accept, addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, delete, getAggregate, getComposite, getTopiaContext, getTopiaCreateDate, getTopiaId, getTopiaVersion, postCreate, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaCreateDate, setTopiaId, setTopiaVersion, update
 

Field Detail

NAME

static final java.lang.String NAME
See Also:
Constant Field Values

OWNER

static final java.lang.String OWNER
See Also:
Constant Field Values

POLL_ACCOUNT

static final java.lang.String POLL_ACCOUNT
See Also:
Constant Field Values
Method Detail

setName

void setName(java.lang.String name)
Parameters:
name - La valeur de l'attribut name à positionner.

getName

java.lang.String getName()
Returns:
La valeur de l'attribut name.

setOwner

void setOwner(UserAccount owner)
Parameters:
owner - La valeur de l'attribut owner à positionner.

getOwner

UserAccount getOwner()
Returns:
La valeur de l'attribut owner.

addPollAccount

void addPollAccount(PollAccount pollAccount)
Parameters:
pollAccount - L'instance de pollAccount à ajouter.

addAllPollAccount

void addAllPollAccount(java.util.List<PollAccount> pollAccount)
Parameters:
pollAccount - Les instances de pollAccount à ajouter.

setPollAccount

void setPollAccount(java.util.List<PollAccount> pollAccount)
Parameters:
pollAccount - La Collection de pollAccount à positionner.

removePollAccount

void removePollAccount(PollAccount pollAccount)
Parameters:
pollAccount - L'instance de pollAccount à retirer.

clearPollAccount

void clearPollAccount()
Vide la Collection de pollAccount.


getPollAccount

java.util.List<PollAccount> getPollAccount()
Returns:
La Liste de pollAccount.

getPollAccountByTopiaId

PollAccount getPollAccountByTopiaId(java.lang.String topiaId)
Recupère l'attribut pollAccount à partir de son topiaId.

Parameters:
topiaId - le topia id de l'entité recherchée
Returns:
l'attribut recherché, ou null s'il n'existe pas.

sizePollAccount

int sizePollAccount()
Returns:
Le nombre d'éléments de la collection pollAccount.

isPollAccountEmpty

boolean isPollAccountEmpty()
Returns:
true si la collection pollAccount est vide.


Copyright © 2009-2010 CodeLutin. All Rights Reserved.