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

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

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

origin: jfree/jcommon

/**
 * Standard constructor - builds a new WizardDialog owned by the specified JFrame.
 *
 * @param owner  the owner.
 * @param modal  modal?
 * @param title  the title.
 * @param firstPanel  the first panel.
 */
public WizardDialog(final JFrame owner, final boolean modal,
          final String title, final WizardPanel firstPanel) {
  super(owner, title + " : step 1", modal);
  this.result = null;
  this.currentPanel = firstPanel;
  this.step = 0;
  this.panels = new ArrayList();
  this.panels.add(firstPanel);
  setContentPane(createContent());
}
origin: org.jfree/jcommon

/**
 * Standard constructor - builds a new WizardDialog owned by the specified JFrame.
 *
 * @param owner  the owner.
 * @param modal  modal?
 * @param title  the title.
 * @param firstPanel  the first panel.
 */
public WizardDialog(final JFrame owner, final boolean modal,
          final String title, final WizardPanel firstPanel) {
  super(owner, title + " : step 1", modal);
  this.result = null;
  this.currentPanel = firstPanel;
  this.step = 0;
  this.panels = new ArrayList();
  this.panels.add(firstPanel);
  setContentPane(createContent());
}
origin: jfree/jcommon

/**
 * Standard constructor - builds and returns a new WizardDialog.
 *
 * @param owner  the owner.
 * @param modal  modal?
 * @param title  the title.
 * @param firstPanel  the first panel.
 */
public WizardDialog(final JDialog owner, final boolean modal,
          final String title, final WizardPanel firstPanel) {
  super(owner, title + " : step 1", modal);
  this.result = null;
  this.currentPanel = firstPanel;
  this.step = 0;
  this.panels = new ArrayList();
  this.panels.add(firstPanel);
  setContentPane(createContent());
}
origin: org.jfree/jcommon

/**
 * Standard constructor - builds and returns a new WizardDialog.
 *
 * @param owner  the owner.
 * @param modal  modal?
 * @param title  the title.
 * @param firstPanel  the first panel.
 */
public WizardDialog(final JDialog owner, final boolean modal,
          final String title, final WizardPanel firstPanel) {
  super(owner, title + " : step 1", modal);
  this.result = null;
  this.currentPanel = firstPanel;
  this.step = 0;
  this.panels = new ArrayList();
  this.panels.add(firstPanel);
  setContentPane(createContent());
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Standard constructor - builds and returns a new WizardDialog.
 *
 * @param owner  the owner.
 * @param modal  modal?
 * @param title  the title.
 * @param firstPanel  the first panel.
 */
public WizardDialog(final JDialog owner, final boolean modal,
          final String title, final WizardPanel firstPanel) {
  super(owner, title + " : step 1", modal);
  this.result = null;
  this.currentPanel = firstPanel;
  this.step = 0;
  this.panels = new ArrayList();
  this.panels.add(firstPanel);
  setContentPane(createContent());
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Standard constructor - builds a new WizardDialog owned by the specified JFrame.
 *
 * @param owner  the owner.
 * @param modal  modal?
 * @param title  the title.
 * @param firstPanel  the first panel.
 */
public WizardDialog(final JFrame owner, final boolean modal,
          final String title, final WizardPanel firstPanel) {
  super(owner, title + " : step 1", modal);
  this.result = null;
  this.currentPanel = firstPanel;
  this.step = 0;
  this.panels = new ArrayList();
  this.panels.add(firstPanel);
  setContentPane(createContent());
}
org.jfree.uiWizardDialogsetContentPane

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
  • previous
    Handles a click on the "previous" button, by displaying the previous panel in the sequence.
  • setTitle
  • setVisible
  • setTitle,
  • setVisible

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSystemService (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • findViewById (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Top Sublime Text plugins
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