Codota Logo
WizardDialog.setContentPane
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
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

  • Running tasks concurrently on multiple threads
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • BoxLayout (javax.swing)
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now