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

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

Best Java code snippets using org.jfree.ui.about.AboutFrame (Showing top 9 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: jfree/jcommon

content.setBorder(STANDARD_BORDER);
final JTabbedPane tabs = createTabs(project);
content.add(tabs);
setContentPane(content);
pack();
origin: org.jfree/com.springsource.org.jfree

final JPanel licencePanel = createLicencePanel();
licencePanel.setBorder(STANDARD_BORDER);
final String licenceTab = this.resources.getString("about-frame.tab.licence");
origin: jfree/jcommon

final JPanel licencePanel = createLicencePanel();
licencePanel.setBorder(STANDARD_BORDER);
final String licenceTab = this.resources.getString(
origin: org.jfree/com.springsource.org.jfree

content.setBorder(STANDARD_BORDER);
final JTabbedPane tabs = createTabs(project);
content.add(tabs);
setContentPane(content);
pack();
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;
}
origin: org.jfree/jcommon

final JPanel licencePanel = createLicencePanel();
licencePanel.setBorder(STANDARD_BORDER);
final String licenceTab = this.resources.getString(
origin: org.jfree/jcommon

content.setBorder(STANDARD_BORDER);
final JTabbedPane tabs = createTabs(project);
content.add(tabs);
setContentPane(content);
pack();
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;
}
org.jfree.ui.aboutAboutFrame

Javadoc

A frame that displays information about the demonstration application.

Most used methods

  • createAboutPanel
    Creates a panel showing information about the application, including the name, version, copyright no
  • 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

  • Finding current android device location
  • scheduleAtFixedRate (Timer)
  • onCreateOptionsMenu (Activity)
  • startActivity (Activity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top plugins for Android Studio
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