Package EDU.purdue.jtb.common
Class VisitorInfo.ReturnInfo
- java.lang.Object
-
- EDU.purdue.jtb.common.VisitorInfo.ReturnInfo
-
- Enclosing class:
- VisitorInfo
public class VisitorInfo.ReturnInfo extends java.lang.Object
Class holding a return type info.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
fullType
Full return type : type + [] for an arrayjava.lang.String
initializer
The return variable proposed initialiserboolean
isTypeParameter
True if the return type is a type parameter, false otherwiseboolean
isVoid
True if the return type is void, false otherwisejava.lang.String
type
Return type : void, [A-Z] (type parameter), java primitive types, user class name
-
Constructor Summary
Constructors Constructor Description ReturnInfo()
-
-
-
Field Detail
-
type
public java.lang.String type
Return type : void, [A-Z] (type parameter), java primitive types, user class name
-
fullType
public java.lang.String fullType
Full return type : type + [] for an array
-
isVoid
public boolean isVoid
True if the return type is void, false otherwise
-
isTypeParameter
public boolean isTypeParameter
True if the return type is a type parameter, false otherwise
-
initializer
public java.lang.String initializer
The return variable proposed initialiser
-
-