Tabnine Logo
AboutFrame.createAboutPanel
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using org.jfree.ui.about.AboutFrame.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.
 * @param project
 */
private JTabbedPane createTabs(final ProjectInfo project) {
  final JTabbedPane tabs = new JTabbedPane();
  final JPanel aboutPanel = createAboutPanel(project);
  aboutPanel.setBorder(AboutFrame.STANDARD_BORDER);
  final String aboutTab = this.resources.getString("about-frame.tab.about");
  tabs.add(aboutTab, aboutPanel);
  final JPanel systemPanel = new SystemPropertiesPanel();
  systemPanel.setBorder(AboutFrame.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.
 *
 * @return a tabbed pane.
 * @param project
 */
private JTabbedPane createTabs(final ProjectInfo project) {
  final JTabbedPane tabs = new JTabbedPane();
  final JPanel aboutPanel = createAboutPanel(project);
  aboutPanel.setBorder(AboutFrame.STANDARD_BORDER);
  final String aboutTab = this.resources.getString(
      "about-frame.tab.about");
  tabs.add(aboutTab, aboutPanel);
  final JPanel systemPanel = new SystemPropertiesPanel();
  systemPanel.setBorder(AboutFrame.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.
 *
 * @return a tabbed pane.
 * @param project
 */
private JTabbedPane createTabs(final ProjectInfo project) {
  final JTabbedPane tabs = new JTabbedPane();
  final JPanel aboutPanel = createAboutPanel(project);
  aboutPanel.setBorder(AboutFrame.STANDARD_BORDER);
  final String aboutTab = this.resources.getString(
      "about-frame.tab.about");
  tabs.add(aboutTab, aboutPanel);
  final JPanel systemPanel = new SystemPropertiesPanel();
  systemPanel.setBorder(AboutFrame.STANDARD_BORDER);
  final String systemTab = this.resources.getString(
      "about-frame.tab.system");
  tabs.add(systemTab, systemPanel);
  return tabs;
}
org.jfree.ui.aboutAboutFramecreateAboutPanel

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 AboutFrame

  • createLicencePanel
    Creates a panel showing the licence.
  • createTabs
    Creates a tabbed pane containing an about panel and a system properties panel.
  • pack
  • setContentPane

Popular in Java

  • Making http post requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • onCreateOptionsMenu (Activity)
  • getResourceAsStream (ClassLoader)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Best IntelliJ 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