Package open.dolphin.order

Examples of open.dolphin.order.StampEditorDialog.start()


        ModuleModel stamp = new ModuleModel();
        stamp.setModuleInfo(stampInfo);

        StampEditorDialog stampEditor = new StampEditorDialog(entity, stamp);
        stampEditor.addPropertyChangeListener(StampEditorDialog.VALUE_PROP, this);
        stampEditor.start();
        logger.debug("stampEditor started");
    }

    /**
     * StampInfo(スタンプ箱の項目)が 複数 Drop された時、そのデータをペインに挿入する。
View Full Code Here


       
        if (kartePane.getTextPane().isEditable() && this.isEditable()) {
            String category = stamp.getModuleInfo().getEntity();
            StampEditorDialog stampEditor = new StampEditorDialog(category, stamp);
            stampEditor.addPropertyChangeListener(StampEditorDialog.VALUE_PROP, this);
            stampEditor.start();
            // 二重起動の禁止 - エディタから戻ったら propertyChange で解除する
            //kartePane.getTextPane().setEditable(false); // こうすると,なぜか focus が次の component にうつってしまう
            this.setEditable(false);
        } else {
            Toolkit.getDefaultToolkit().beep();
View Full Code Here

        StampEditorDialog stampEditor = new StampEditorDialog("diagnosis", rd);

        // 編集終了、値の受け取りにこのオブジェクトを設定する
        stampEditor.addPropertyChangeListener(StampEditorDialog.VALUE_PROP, this);
        stampEditor.start();
    }
   
    /**
     * 傷病名エディタからデータを受け取りテーブルへ追加する。
     */
 
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.