< prev index next >

modules/javafx.web/src/main/java/com/sun/webkit/graphics/WCPathIterator.java

Print this page
rev 10044 : 8166231: use @Native annotation in web classes
Reviewed-by: kcr

*** 23,39 **** * questions. */ package com.sun.webkit.graphics; public interface WCPathIterator { ! public static final int SEG_MOVETO = 0; ! public static final int SEG_LINETO = 1; ! public static final int SEG_QUADTO = 2; ! public static final int SEG_CUBICTO = 3; ! public static final int SEG_CLOSE = 4; public int getWindingRule(); public boolean isDone(); --- 23,41 ---- * questions. */ package com.sun.webkit.graphics; + import java.lang.annotation.Native; + public interface WCPathIterator { ! @Native public static final int SEG_MOVETO = 0; ! @Native public static final int SEG_LINETO = 1; ! @Native public static final int SEG_QUADTO = 2; ! @Native public static final int SEG_CUBICTO = 3; ! @Native public static final int SEG_CLOSE = 4; public int getWindingRule(); public boolean isDone();
< prev index next >