Returns all MethodNodes declared in this ClassNode, including inherited and synthetic methods. If this node is a proxy (has a redirect), the call is forwarded to the redirect target. This list includes constructors and all instance and static methods defined for this class. @return a list o
()
| 1070 | * @see MethodNode |
| 1071 | */ |
| 1072 | public List<MethodNode> getMethods() { |
| 1073 | if (redirect != null) |
| 1074 | return redirect.getMethods(); |
| 1075 | lazyClassInit(); |
| 1076 | return methodsList; |
| 1077 | } |
| 1078 | |
| 1079 | /** |
| 1080 | * Returns a list of all abstract {@link MethodNode}s declared in this ClassNode. |