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

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

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

origin: org.jfree/com.springsource.org.jfree

/**
 * Enables/disables the buttons according to the current step.  A good idea would be to ask the
 * panels to return the status...
 */
private void enableButtons() {
  this.previousButton.setEnabled(this.step > 0);
  this.nextButton.setEnabled(canDoNextPanel());
  this.finishButton.setEnabled(canFinish());
  this.helpButton.setEnabled(false);
}
origin: jfree/jcommon

/**
 * Enables/disables the buttons according to the current step.  A good idea would be to ask the
 * panels to return the status...
 */
private void enableButtons() {
  this.previousButton.setEnabled(this.step > 0);
  this.nextButton.setEnabled(canDoNextPanel());
  this.finishButton.setEnabled(canFinish());
  this.helpButton.setEnabled(false);
}
origin: org.jfree/jcommon

/**
 * Enables/disables the buttons according to the current step.  A good idea would be to ask the
 * panels to return the status...
 */
private void enableButtons() {
  this.previousButton.setEnabled(this.step > 0);
  this.nextButton.setEnabled(canDoNextPanel());
  this.finishButton.setEnabled(canFinish());
  this.helpButton.setEnabled(false);
}
org.jfree.uiWizardDialogcanFinish

Javadoc

Returns true if it is possible to finish the sequence at this point (possibly with defaults for the remaining entries).

Popular methods of WizardDialog

  • canDoNextPanel
    Returns true if there is a 'next' panel, and false otherwise.
  • 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
  • previous
    Handles a click on the "previous" button, by displaying the previous panel in the sequence.
  • setContentPane
  • setTitle
  • setVisible
  • setTitle,
  • setVisible

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • compareTo (BigDecimal)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Table (org.hibernate.mapping)
    A relational table
  • CodeWhisperer alternatives
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