atsah* プラグイン開発 簡易テキスト表示ダイアログ

概要

処理結果をダイアログ表示するときに使用。

Program

package xyz.astah.example;

import java.awt.Frame;
import java.awt.Insets;

import javax.swing.JDialog;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

public class TextDialog extends JDialog {
    public TextDialog(String text, Frame frame, int width, int height, boolean modal) {
        super(frame, "Text Dialog", modal);

        JTextArea jTextArea = new JTextArea(text);
        jTextArea.setMargin(new Insets(8, 8, 8, 8));

        JScrollPane jScrollPane = new JScrollPane(jTextArea);

        this.getContentPane().add(jScrollPane);
        this.setBounds(frame.getX() + 100, frame.getY() + 100, width, height);
        this.setVisible(true);
    }
}

使用例

TextDialog textDialog = new TextDialog(outputText.toString(), api.getViewManager().getMainFrame(), 300, 300, false);

astah*

Posted by shi-n