Tabnine Logo
AboutDialog.createAboutPanel
Code IndexAdd Tabnine 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)

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

  • Reactive rest calls using spring rest template
  • getExternalFilesDir (Context)
  • getSystemService (Context)
  • setContentView (Activity)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • JCheckBox (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top 12 Jupyter Notebook extensions
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