Examples of LabeledPanel


Examples of org.mevenide.idea.util.ui.LabeledPanel

        initComponents();
        layoutComponents();
    }

    private void initComponents() {
        tabs.add("General", new LabeledPanel(RES.get("general.info.desc"),
                                             new GeneralInfoPanel(project)));

        tabs.add("Mailing lists", new TabPlaceHolder(RES.get("mail.lists.desc"),
                                                     new Callable<JComponent>() {
                                                         public JComponent call() throws Exception {
View Full Code Here

Examples of org.mevenide.idea.util.ui.LabeledPanel

                public void stateChanged(final ChangeEvent pEvent) {
                    if (component == null && tabs.getSelectedComponent() == TabPlaceHolder.this)
                        try {
                            component = initializer.call();
                            if (label != null && label.trim().length() > 0)
                                component = new LabeledPanel(label, component);
                            add(component, BorderLayout.CENTER);
                        }
                        catch (Exception e) {
                            LOG.error(e.getMessage(), e);
                        }
View Full Code Here

Examples of org.mevenide.idea.util.ui.LabeledPanel

        c.fill = BOTH;
        c.gridy = 1;
        c.weightx = 1;
        c.weighty = 1;
        final SplitPanel<JPanel, JPanel> splitPanel = new SplitPanel<JPanel, JPanel>(
                new LabeledPanel(RES.get("versions.desc"), versionsPanel),
                new LabeledPanel(RES.get("branches.desc"), branchesPanel),
                false);
        add(splitPanel, c);
    }
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.