Package open.dolphin.client

Examples of open.dolphin.client.BlockGlass


                close();
            }
        });
       
        // BlockGlass を生成し dialog に設定する
        glass = new BlockGlass();
        dialog.setGlassPane(glass);
               
        editor = new StampEditor(this.entity);
        editor.start();
        editor.addPropertyChangeListener(VALID_DATA_PROP, this);
View Full Code Here


    /**
     * 履歴の検索時にテーブルのキー入力をブロックする。
     * @param busy true の時検索中
     */
    public void blockHistoryTable(boolean busy) {
        BlockGlass blockGlass = (BlockGlass) context.getFrame().getGlassPane();
        if (busy) {
            view.getTable().addKeyListener(blockKeyListener);
            blockGlass.setText("読み込み中");
            blockGlass.block();
        } else {
            view.getTable().removeKeyListener(blockKeyListener);
            blockGlass.setText("");
            blockGlass.unblock();
        }
    }
View Full Code Here

     */
    private void initComponents() {
       
        view = new LoginView((Frame) null, false);
        view.getRootPane().setDefaultButton(view.getLoginBtn());
        blockGlass = new BlockGlass();
        view.setGlassPane(blockGlass);
       
        setWindowTitle();
       
        //
View Full Code Here

TOP

Related Classes of open.dolphin.client.BlockGlass

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.