public static interface Assistant.ForwardPage
final Assistant assistant;
...
assistant.setForwardPageCallback(new Assistant.ForwardPage() {
public int onForward(Assistant source, int current) {
return (current + 1);
}
});
If you are researching the GTK API documentation, see
(*GtkAssistantPageFunc). Creating and invoking this
"forward" signal is how java-gnome has implemented the function pointer
expected by gtk_assistant_set_forward_page_func().
int onForward(Assistant source, int currentPage)