Package jpa.tools.swing

Examples of jpa.tools.swing.PreparedQueryViewer


        public ViewQueryCacheAction(String name, Icon icon, String tooltip) {
            super(name, icon, tooltip);
        }
        public void actionPerformed(ActionEvent e) {
            if (_queryView == null) {
                _queryView = new PreparedQueryViewer(OpenJPAPersistence.cast(getService().getUnit()));
                showTab(_tabbedPane, "JPQL Query", new JScrollPane(_queryView));
            }
            showTab(_tabbedPane, "JPQL Queries", _queryView);
        }
View Full Code Here

TOP

Related Classes of jpa.tools.swing.PreparedQueryViewer

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.