| Modifier and Type | Method and Description |
|---|---|
java.util.List<Argument> |
Method.getArguments()
Récupère tous les arguments de la méthode.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Method.addArgument(Argument a)
Ajoute un argument à la méthode.
|
| Constructor and Description |
|---|
Method(java.lang.String access,
java.lang.String type,
java.lang.String name,
java.util.ArrayList<Argument> arguments)
Constructeur - Crée une instance de Method avec des paramètres donnés.
|
Method(java.lang.String access,
java.lang.String type,
java.lang.String name,
java.util.List<Argument> arguments,
boolean constr,
boolean stat,
boolean fina,
boolean abst,
boolean sync,
boolean vola,
boolean tran)
Constructeur - Crée une instance de Method avec des paramètres donnés.
|