Package jsynoptic.base

Examples of jsynoptic.base.Plugin.about()


                aboutFrame = new JFrame(messageWriter.print1args("aboutTitle", Run.productName));
                String content = messageWriter.print0args("aboutContent");
                boolean pluginLineWritten = false;
                for (Iterator it = Run.plugins.iterator(); it.hasNext();) {
                    Plugin p = (Plugin) it.next();
                    String text = p.about();
                    if (text == null) {
                        continue;
                    }
                    if (!pluginLineWritten) {
                        content += "<p>" + messageWriter.print0args("Plugins:") + "<ul>";
View Full Code Here


                    }
                    if (!pluginLineWritten) {
                        content += "<p>" + messageWriter.print0args("Plugins:") + "<ul>";
                        pluginLineWritten = true;
                    }
                    content += "<li>" + p.about() + "</li>";
                }
                if (pluginLineWritten) {
                    content += "</ul></p>";
                }
                JEditorPane jdp = new JEditorPane("text/html", content);
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.