Uses of Class
opBancaires.CompteAbstract

Uses of CompteAbstract in opBancaires
 

Subclasses of CompteAbstract in opBancaires
 class CompteCourant
           
 class CompteEpargne
           
 class CompteRemunereAbstract
           
 

Fields in opBancaires declared as CompteAbstract
private  CompteAbstract Operation.compte
          Compte concerné par l'opération.
private  CompteAbstract OrdreVirement.destination
          Référence sur le compte origine/destination.
private  CompteAbstract OrdreVirement.origine
          Référence sur le compte origine/destination.
 

Fields in opBancaires with type parameters of type CompteAbstract
private  java.util.ArrayList<CompteAbstract> Client.comptes
          Field comptes
Listes des comptes dont le client est titulaire.
 

Methods in opBancaires that return CompteAbstract
 CompteAbstract Operation.getCompte()
           
 CompteAbstract OrdreVirement.getDestination()
           
 CompteAbstract OrdreVirement.getOrigine()
           
 

Methods in opBancaires that return types with arguments of type CompteAbstract
 java.util.ArrayList<CompteAbstract> Client.getComptes()
           
 

Methods in opBancaires with parameters of type CompteAbstract
 void Client.addCompte(CompteAbstract compte)
          Ajoute un compte dont le client est titulaire.
 void Operation.initOperation(Client client, CompteAbstract compte, StatutEnum statut, NatureOperationEnum nature, double montant)
          Initialise un objet Operation pré-existant avec les valeurs spécifiées en paramètres.
 void Operation.setCompte(CompteAbstract compte)
           
 void OrdreVirement.setDestination(CompteAbstract destination)
           
 void OrdreVirement.setOrigine(CompteAbstract origine)
           
 

Constructors in opBancaires with parameters of type CompteAbstract
Operation(Client client, CompteAbstract compte, StatutEnum statut, NatureOperationEnum nature, double montant)
          Constructor.
OrdreVirement(Client donneurOrdre, CompteAbstract origine, CompteAbstract destination, double montant)