Examples of doLayout()


Examples of BiNGO.BiNGO.SpringEmbeddedLayouter.doLayout()

            }
          }

          if (layoutNecessary) {
            SpringEmbeddedLayouter lay = new SpringEmbeddedLayouter(newNetworkView);
            lay.doLayout(0.0D, 0.0D, 0.0D, null);
          }

          newNetworkView.fitContent();
          newNetworkView.updateView();
View Full Code Here

Examples of ch.qos.logback.classic.PatternLayout.doLayout()

    pl.setPattern("%m%rEx%n");
    pl.start();

    //when
    ILoggingEvent e = createLoggingEvent(new Exception("x"));
    String result = pl.doLayout(e);

    //then
    // make sure that at least some package data was output
    Pattern p = Pattern.compile("\\s*at .*?\\[.*?\\]");
    Matcher m = p.matcher(result);
View Full Code Here

Examples of charva.awt.Container.doLayout()

             * size.
             */
            if (c instanceof Container) {
                Container cont = (Container) c;
                cont.setSize(cont.minimumSize());
                cont.doLayout();
            }

            Dimension componentsize = c.getSize();
            if (_axis == X_AXIS) {
                float alignment = c.getAlignmentY();
View Full Code Here

Examples of com.gwtext.client.widgets.Panel.doLayout()

                                                                                                                                               } );

                                                                                                                                               ruleViews.put( row.uuid,
                                                                                                                                                              ruleViewer );

                                                                                                                                               panel.doLayout();
                                                                                                                                           }
                                                                                                                                       } );
                                                                                 }
                                                                             } );
                    } else {
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.doLayout()

                        }

                        if (pane.getTabCount() == 0) {
                            pane.updateUI();
                        }
                        pane.doLayout();
                        if (pane.getSelectedIndex() >= 0) {
                            ((BasicJideTabbedPaneUI) pane.getUI())._tabScroller.tabPanel.scrollIndexToVisible(pane.getSelectedIndex());
                        }
                    }
                }
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.doLayout()

                    if (index >= 0)
                        pane.removeTabAt(index);
                    if (pane.getTabCount() == 0) {
                        pane.updateUI();
                    }
                    pane.doLayout();
                    if (pane.getSelectedIndex() >= 0) {
                        ((BasicJideTabbedPaneUI) pane.getUI())._tabScroller.tabPanel.scrollIndexToVisible(pane.getSelectedIndex());
                    }
                }
                else if (closeSelected) {
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.doLayout()

                    if (pane.getSelectedIndex() >= 0)
                        pane.removeTabAt(pane.getSelectedIndex());
                    if (pane.getTabCount() == 0) {
                        pane.updateUI();
                    }
                    pane.doLayout();
                    if (pane.getSelectedIndex() >= 0) {
                        ((BasicJideTabbedPaneUI) pane.getUI())._tabScroller.tabPanel.scrollIndexToVisible(pane.getSelectedIndex());
                    }
                }
                else if (src instanceof JideTabbedPane.NoFocusButton) {
View Full Code Here

Examples of com.nexirius.framework.dataviewer.LayoutItem.doLayout()

        LayoutEnumeration e = layoutArray.getEnumeration();

        while (e.hasMore()) {
            LayoutItem l = (LayoutItem) e.next();

            l.doLayout(parent_viewer);
        }

        // move and resize the JComponent
        defaultLayout(parent_viewer.getJComponent(), parent_viewer.getFactory());
    }
View Full Code Here

Examples of com.sun.hotspot.igv.hierarchicallayout.HierarchicalClusterLayoutManager.doLayout()

            HierarchicalLayoutManager manager = new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.SAME_OUTPUTS);
            manager.setMaxLayerLength(9);
            manager.setMinLayerDifference(3);
            m.setManager(manager);
            m.setSubManager(new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.SAME_OUTPUTS));
            m.doLayout(new LayoutGraph(edges, figures));

        } else {
            HierarchicalLayoutManager manager = new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.SAME_OUTPUTS);
            manager.setMaxLayerLength(10);
            manager.doLayout(new LayoutGraph(edges, figures));
View Full Code Here

Examples of com.sun.hotspot.igv.hierarchicallayout.HierarchicalLayoutManager.doLayout()

        }

        HierarchicalLayoutManager m = new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.NONE);

        LayoutGraph layoutGraph = new LayoutGraph(links, vertices);
        m.doLayout(layoutGraph);
    }

    protected void performNodesLayout(UniversalGraph<N, E> graph, Collection<N> nodes) {
        throw new UnsupportedOperationException();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.