< prev index next >

modules/javafx.web/src/main/java/com/sun/webkit/ContextMenuItem.java

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

*** 23,36 **** * questions. */ package com.sun.webkit; public final class ContextMenuItem { ! public static final int ACTION_TYPE = 0; ! public static final int SEPARATOR_TYPE = 1; ! public static final int SUBMENU_TYPE = 2; private String title; private int action; private boolean isEnabled; private boolean isChecked; --- 23,38 ---- * questions. */ package com.sun.webkit; + import java.lang.annotation.Native; + public final class ContextMenuItem { ! @Native public static final int ACTION_TYPE = 0; ! @Native public static final int SEPARATOR_TYPE = 1; ! @Native public static final int SUBMENU_TYPE = 2; private String title; private int action; private boolean isEnabled; private boolean isChecked;
< prev index next >