Package org.openide.explorer.propertysheet

Examples of org.openide.explorer.propertysheet.PropertySheetView


    void initialize() {
        BeanTreeView left;
        left = new BeanTreeView();
        left.setRootVisible(false);

        PropertySheetView right;
        right = new PropertySheetView();
        right.setDescriptionAreaVisible(false);
       
        JSplitPane splitPane;
        splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, left, right);
        splitPane.setResizeWeight(0.4);
        splitPane.setDividerSize(3);
View Full Code Here


    PropertySheetView prop = null;
    private LilyPropertiesTopComponent() {
        initComponents();
        setName(NbBundle.getMessage(LilyPropertiesTopComponent.class, "CTL_LilyPropertiesTopComponent"));
        setToolTipText(NbBundle.getMessage(LilyPropertiesTopComponent.class, "HINT_LilyPropertiesTopComponent"));
        prop = new PropertySheetView();
        add(prop, java.awt.BorderLayout.CENTER);
        associateLookup(ExplorerUtils.createLookup(mgr, getActionMap()));
        putClientProperty("netbeans.winsys.tc.keep_preferred_size_when_slided_in", Boolean.TRUE);

    }
View Full Code Here

TOP

Related Classes of org.openide.explorer.propertysheet.PropertySheetView

Copyright © 2018 www.massapicom. 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.