use of javax.lang.model.type.NullType in project RoboBinding by RoboBinding.
the class TypeMirrorWrapperTest method unsupportedTypeMirrors.
@DataPoints("unsupportedTypeMirrors")
public static TypeMirror[] unsupportedTypeMirrors() {
Types types = compilation.getTypes();
NullType nullType = types.getNullType();
NoType noneType = types.getNoType(TypeKind.NONE);
return new TypeMirror[] { nullType, noneType };
}
Aggregations