Skip to content

Commit 2534e20

Browse files
committed
Add getters for constructor parameters
1 parent b995fd6 commit 2534e20

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/org/jcodegen/java/FunctionArgument.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,16 @@ public String toString() {
3030

3131
return buf.toString();
3232
}
33+
34+
public String getName() {
35+
return name;
36+
}
37+
38+
public String getType() {
39+
return type;
40+
}
41+
42+
public boolean isFinal() {
43+
return isFinal;
44+
}
3345
}

0 commit comments

Comments
 (0)