Package jpa.tools.swing

Examples of jpa.tools.swing.ConfigurationViewer


        public ViewConfigAction(String name, Icon icon, String tooltip) {
            super(name, icon, tooltip);
        }
        public void actionPerformed(ActionEvent e) {
            if (_configView == null) {
                _configView = new ConfigurationViewer("Unit Configuration", getService().getUnit().getProperties());
                showTab(_tabbedPane, "Configuration", new JScrollPane(_configView));
            } else {
                showTab(_tabbedPane, "Configuration", _configView);
            }
        }
View Full Code Here

TOP

Related Classes of jpa.tools.swing.ConfigurationViewer

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.