home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Dialog;
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
- import java.io.IOException;
- import java.io.StringWriter;
-
- final class XMLPro$34 implements ActionListener {
- // $FF: synthetic field
- private final XMLPro this$0;
-
- // $FF: synthetic method
- XMLPro$34(XMLPro var1) {
- this.this$0 = var1;
- }
-
- public void actionPerformed(ActionEvent var1) {
- this.this$0.setWaitCursor();
- StringWriter var2 = new StringWriter();
-
- try {
- this.this$0.xmlDocument.document.printWithFormat(var2);
- } catch (IOException var4) {
- }
-
- TextDialog var3 = new TextDialog(this.this$0.theApp, Strings.ViewXML, var2.toString());
- this.this$0.setDefaultCursor();
- ((Dialog)var3).show();
- }
- }
-