The current annotator treats every @Intrinsic annotations in an iOS facet as if it would be an Objective-C class. Note that @Intrinsic annotations may be used with C declarations as well.
@Framework("CoreGraphics")
@Intrinsic("CGRect")
public final class CGRect extends Struct {
public CGRect() {}
//illegal error here, annotator expects "CGRectContainsPoint::"
@Intrinsic("CGRectContainsPoint")
public static native boolean containsPoint(@ByVal CGRect rect, @ByVal CGPoint point);
}
The current annotator treats every
@Intrinsic
annotations in an iOS facet as if it would be an Objective-C class. Note that@Intrinsic
annotations may be used with C declarations as well.