Intellij JCEF docs

Answered

where can I find java docs for JBCEF? For example, JCef implementation posted in BitBucket has CefApp.addAppHandler which handles StateHasChanged and user CefAppState.Terminated parameter to decide to exit the system or not. It also has CefApp.start(args) in the main method just to get the Cef app running. Are there equivalent to those methods in JB implementation? Other classes are:
org.cef.CefApp.CefAppState;
org.cef.CefSettings;
org.cef.handler.CefAppHandler; // I see a factory method in JB implementation but don't know how to use it.
org.cef.handler.CefAppHandlerAdapter;
I tried by adding 'JB' to the classes names but it did not work.  

0
1 comment

There is no actual documentation for the JBCef since it's a port - it still uses the original JCef.

There is a page related to the JCEF in the IntelliJ Platform SDK DevGuide: JCEF.

Besides, you can browse the com/intellij/ui/jcef sources on GitHub.

0

Please sign in to leave a comment.