Tabnine Logo
WizardDialog.previous
Code IndexAdd Tabnine to your IDE (free)

How to use
previous
method
in
org.jfree.ui.WizardDialog

Best Java code snippets using org.jfree.ui.WizardDialog.previous (Showing top 3 results out of 315)

origin: jfree/jcommon

/**
 * Handles events.
 *
 * @param event  the event.
 */
public void actionPerformed(final ActionEvent event) {
  final String command = event.getActionCommand();
  if (command.equals("nextButton")) {
    next();
  }
  else if (command.equals("previousButton")) {
    previous();
  }
  else if (command.equals("finishButton")) {
    finish();
  }
}
origin: org.jfree/jcommon

/**
 * Handles events.
 *
 * @param event  the event.
 */
public void actionPerformed(final ActionEvent event) {
  final String command = event.getActionCommand();
  if (command.equals("nextButton")) {
    next();
  }
  else if (command.equals("previousButton")) {
    previous();
  }
  else if (command.equals("finishButton")) {
    finish();
  }
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Handles events.
 *
 * @param event  the event.
 */
public void actionPerformed(final ActionEvent event) {
  final String command = event.getActionCommand();
  if (command.equals("nextButton")) {
    next();
  }
  else if (command.equals("previousButton")) {
    previous();
  }
  else if (command.equals("finishButton")) {
    finish();
  }
}
org.jfree.uiWizardDialogprevious

Javadoc

Handles a click on the "previous" button, by displaying the previous panel in the sequence.

Popular methods of WizardDialog

  • canDoNextPanel
    Returns true if there is a 'next' panel, and false otherwise.
  • canFinish
    Returns true if it is possible to finish the sequence at this point (possibly with defaults for the
  • createContent
    Creates a panel containing the user interface for the dialog.
  • enableButtons
    Enables/disables the buttons according to the current step. A good idea would be to ask the panels t
  • finish
    Finishes the wizard.
  • getContentPane
  • getWizardPanel
    Returns the panel for the specified step (steps are numbered from zero).
  • next
    Displays the next step in the wizard sequence.
  • pack
  • setContentPane
  • setTitle
  • setVisible
  • setTitle,
  • setVisible

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now