mirror of
https://github.com/Noratrieb/UMLetClassParser.git
synced 2026-01-15 09:05:05 +01:00
removed warnings
This commit is contained in:
parent
c24064c2c1
commit
422059060f
5 changed files with 10 additions and 20 deletions
|
|
@ -2,21 +2,13 @@ import java.util.ArrayList;
|
|||
|
||||
public class UMLMethod {
|
||||
|
||||
private String returnType;
|
||||
private String name;
|
||||
private String encapsulation;
|
||||
private final String returnType;
|
||||
private final String name;
|
||||
private final String encapsulation;
|
||||
|
||||
private ArrayList<String> argsNames = new ArrayList<>();
|
||||
private ArrayList<String> argsTypes = new ArrayList<>();
|
||||
|
||||
public UMLMethod(String encapsulation, String returnType, String name, ArrayList<String> argsNames, ArrayList<String> argsTypes) {
|
||||
this.returnType = returnType;
|
||||
this.name = name;
|
||||
this.argsNames = argsNames;
|
||||
this.argsTypes = argsTypes;
|
||||
this.encapsulation = encapsulation;
|
||||
}
|
||||
|
||||
public UMLMethod(String line, String className) {
|
||||
|
||||
//First, format it nicely
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue