Package com.iizigo.java.parser.type
Class IzMethodDeclaration
- java.lang.Object
-
- com.iizigo.java.parser.type.IzMethodDeclaration
-
public class IzMethodDeclaration extends java.lang.Object
Method declaration class.- Author:
- Christopher Mindus
-
-
Field Summary
Fields Modifier and Type Field Description org.eclipse.jdt.core.IMethod
method
The method, null when loaded from XML.org.eclipse.jdt.core.dom.MethodDeclaration
methodDeclaration
The method declaration.java.lang.String
name
The name, null for constructors.java.lang.String
signature
The Simple Signature.
-
-
-
Field Detail
-
name
public final java.lang.String name
The name, null for constructors.
-
signature
public final java.lang.String signature
The Simple Signature.
-
method
public final org.eclipse.jdt.core.IMethod method
The method, null when loaded from XML.
-
methodDeclaration
public final org.eclipse.jdt.core.dom.MethodDeclaration methodDeclaration
The method declaration.
-
-