Tabnine Logo
AbstractTabbedUI.setLayout
Code IndexAdd Tabnine to your IDE (free)

How to use
setLayout
method
in
org.jfree.ui.tabbedui.AbstractTabbedUI

Best Java code snippets using org.jfree.ui.tabbedui.AbstractTabbedUI.setLayout (Showing top 3 results out of 315)

origin: org.jfree/jcommon

/**
 * Default constructor.
 */
public AbstractTabbedUI() {
  this.selectedRootEditor = -1;
  this.toolbarContainer = new JPanel();
  this.toolbarContainer.setLayout(new BorderLayout());
  this.tabbedPane = new JTabbedPane(SwingConstants.BOTTOM);
  this.tabbedPane.addChangeListener(new TabChangeHandler(this.tabbedPane));
  this.rootEditors = new ArrayList();
  setLayout(new BorderLayout());
  add(this.toolbarContainer, BorderLayout.NORTH);
  add(this.tabbedPane, BorderLayout.CENTER);
  this.closeAction = createCloseAction();
}
origin: jfree/jcommon

/**
 * Default constructor.
 */
public AbstractTabbedUI() {
  this.selectedRootEditor = -1;
  this.toolbarContainer = new JPanel();
  this.toolbarContainer.setLayout(new BorderLayout());
  this.tabbedPane = new JTabbedPane(SwingConstants.BOTTOM);
  this.tabbedPane.addChangeListener(new TabChangeHandler(this.tabbedPane));
  this.rootEditors = new ArrayList();
  setLayout(new BorderLayout());
  add(this.toolbarContainer, BorderLayout.NORTH);
  add(this.tabbedPane, BorderLayout.CENTER);
  this.closeAction = createCloseAction();
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Default constructor.
 */
public AbstractTabbedUI() {
  this.selectedRootEditor = -1;
  this.toolbarContainer = new JPanel();
  this.toolbarContainer.setLayout(new BorderLayout());
  this.tabbedPane = new JTabbedPane(SwingConstants.BOTTOM);
  this.tabbedPane.addChangeListener(new TabChangeHandler(this.tabbedPane));
  this.rootEditors = new ArrayList();
  setLayout(new BorderLayout());
  add(this.toolbarContainer, BorderLayout.NORTH);
  add(this.tabbedPane, BorderLayout.CENTER);
  this.closeAction = createCloseAction();
}
org.jfree.ui.tabbeduiAbstractTabbedUIsetLayout

Popular methods of AbstractTabbedUI

  • add
  • addMenus
    Adds menus.
  • addPropertyChangeListener
  • attempExit
    Attempts to exit.
  • closeToolbar
    Closes the toolbar.
  • createCloseAction
    Creates a close action.
  • createEditorMenubar
    Creates a menu bar.
  • firePropertyChange
  • getCloseAction
    Returns the close action.
  • getJMenuBar
    Returns the menu bar.
  • getPostfixMenus
    The postfix menus.
  • getPrefixMenus
    Returns the prefix menus.
  • getPostfixMenus,
  • getPrefixMenus,
  • getRootEditor,
  • getRootEditorCount,
  • getSelectedEditor,
  • isGlobalMenu,
  • setJMenuBar,
  • setSelectedEditor,
  • updateGlobalMenubar

Popular in Java

  • Creating JSON documents from java classes using gson
  • setContentView (Activity)
  • startActivity (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Kernel (java.awt.image)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • CodeWhisperer alternatives
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