Here are a couple tips to make your experience here more productive and ensure you get the best help possible.
1) You didn't tell us what it's doing instead. Please TellTheDetails.
2) That's way too much code. We don't need to see your whole program. Provide just enough to show the specific problem you're asking about, and nothing else. Often times this means writing a completely separate, smaller program--an SSCCE.
EDIT: Okay, I see you've updated your post. That looks better. So, when you say you "don't get anything", you mean there's no output at all? What output do you expect?
Jeff Verdegan wrote:
So, when you say you "don't get anything", you mean there's no output at all? What output do you expect?
The output I would like to have when my project is done is what I have posted before posting my classes but for now I'd like anything at least so I can try and work on something... xD
It's never good idea to post that much code unless you are sure it's all relevant to the problem you are having. It is also preferred that you write your code in english because when someone starts to read someone elses code he looks at variable and method names to understand it faster, in your case you have written your code in french if I'm not mistaken which makes it more difficult to read for someone that doesn't know french (me for instance).
If you are having output problems the simplest way to debug it is to output some extra debug text at appropriate places in your code to narrow the possible cause. I'd check if that for loop at line:95 is being executed as it should. In other words, work you way backwards until you find the source of the problem.
I think I have to modify something in the class Compte so that each depot, retrait or transfer create an occurrence of the class Transaction wich will be save in the ArrayList named transacList inside the object compte I just dont know how to do it...
If you need me to put my code in english so that you can help me I will...
The reason you are not getting any output is that transacList is empty. What is missing is adding a new Transaction object to that list when deposit, withdrawal or transfer is made on the account.