Package EDU.purdue.jtb.common
Class VisitorInfo.ReturnInfo
java.lang.Object
EDU.purdue.jtb.common.VisitorInfo.ReturnInfo
- Enclosing class:
VisitorInfo
Class holding a return type info.
-
Field Summary
FieldsModifier and TypeFieldDescriptionFull return type : type + [] for an arrayThe return variable proposed initialiserboolean
True if the return type is a type parameter, false otherwiseboolean
True if the return type is void, false otherwiseReturn type : void, [A-Z] (type parameter), java primitive types, user class name -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
type
Return type : void, [A-Z] (type parameter), java primitive types, user class name -
fullType
Full return type : type + [] for an array -
isVoid
public boolean isVoidTrue if the return type is void, false otherwise -
isTypeParameter
public boolean isTypeParameterTrue if the return type is a type parameter, false otherwise -
initializer
The return variable proposed initialiser
-
-
Constructor Details
-
ReturnInfo
public ReturnInfo()
-