Codota Logo
AboutDialog.createAboutPanel
Code IndexAdd Codota to your IDE (free)

How to use
createAboutPanel
method
in
org.jfree.ui.about.AboutDialog

Best Java code snippets using org.jfree.ui.about.AboutDialog.createAboutPanel (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Creates a tabbed pane containing an about panel and a system properties panel.
 *
 * @return a tabbed pane.
 */
private JTabbedPane createTabs(final ProjectInfo info) {
  final JTabbedPane tabs = new JTabbedPane();
  final JPanel aboutPanel = createAboutPanel(info);
  aboutPanel.setBorder(AboutDialog.STANDARD_BORDER);
  final String aboutTab = this.resources.getString("about-frame.tab.about");
  tabs.add(aboutTab, aboutPanel);
  final JPanel systemPanel = new SystemPropertiesPanel();
  systemPanel.setBorder(AboutDialog.STANDARD_BORDER);
  final String systemTab = this.resources.getString("about-frame.tab.system");
  tabs.add(systemTab, systemPanel);
  return tabs;
}
origin: jfree/jcommon

/**
 * Creates a tabbed pane containing an about panel and a system properties
 * panel.
 *
 * @param info  project information.
 *
 * @return a tabbed pane.
 */
private JTabbedPane createTabs(final ProjectInfo info) {
  final JTabbedPane tabs = new JTabbedPane();
  final JPanel aboutPanel = createAboutPanel(info);
  aboutPanel.setBorder(AboutDialog.STANDARD_BORDER);
  final String aboutTab = this.resources.getString(
      "about-frame.tab.about");
  tabs.add(aboutTab, aboutPanel);
  final JPanel systemPanel = new SystemPropertiesPanel();
  systemPanel.setBorder(AboutDialog.STANDARD_BORDER);
  final String systemTab = this.resources.getString(
      "about-frame.tab.system");
  tabs.add(systemTab, systemPanel);
  return tabs;
}
origin: org.jfree/jcommon

/**
 * Creates a tabbed pane containing an about panel and a system properties
 * panel.
 *
 * @param info  project information.
 *
 * @return a tabbed pane.
 */
private JTabbedPane createTabs(final ProjectInfo info) {
  final JTabbedPane tabs = new JTabbedPane();
  final JPanel aboutPanel = createAboutPanel(info);
  aboutPanel.setBorder(AboutDialog.STANDARD_BORDER);
  final String aboutTab = this.resources.getString(
      "about-frame.tab.about");
  tabs.add(aboutTab, aboutPanel);
  final JPanel systemPanel = new SystemPropertiesPanel();
  systemPanel.setBorder(AboutDialog.STANDARD_BORDER);
  final String systemTab = this.resources.getString(
      "about-frame.tab.system");
  tabs.add(systemTab, systemPanel);
  return tabs;
}
org.jfree.ui.aboutAboutDialogcreateAboutPanel

Javadoc

Creates a panel showing information about the application, including the name, version, copyright notice, URL for further information, and a list of contributors.

Popular methods of AboutDialog

  • createLicencePanel
    Creates a panel showing the licence.
  • createTabs
    Creates a tabbed pane containing an about panel and a system properties panel.
  • init
    Constructs an 'About' frame.
  • pack
  • setContentPane
  • setTitle

Popular in Java

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • setContentView (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Path (java.nio.file)
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JOptionPane (javax.swing)
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