Examples of XYCoord


Examples of systeminformationmonitor.swing.util.CalcDialogCenter.XYCoord

                javaInformationDialog.setJavaVMVendorTextField(javaOjb.getJvmVendor());
                javaInformationDialog.setJavaVersionTextField(javaOjb.getJvmVersion());
            }
        });

        XYCoord xyp = CalcDialogCenter.getDialogCenterLocation(getFrame(), javaInformationDialog);
        javaInformationDialog.setLocation(xyp.getX(), xyp.getY());
        javaInformationDialog.setVisible(true);
    }
View Full Code Here

Examples of systeminformationmonitor.swing.util.CalcDialogCenter.XYCoord

    @Action
    public void showSystemInformationEnvDialog() {
        // create the dialog
        final SystemEnvDialog sysInformationDialog = new SystemEnvDialog(getFrame(), true);
        XYCoord xyp = CalcDialogCenter.getDialogCenterLocation(getFrame(), sysInformationDialog);
        sysInformationDialog.setLocation(xyp.getX(), xyp.getY());
        sysInformationDialog.setVisible(true);
    }
View Full Code Here

Examples of systeminformationmonitor.swing.util.CalcDialogCenter.XYCoord

    }

    @Action
    public void helpDialog() {
        final HelpDialog helpDialog = new HelpDialog(getFrame(), true);
        XYCoord xyp = CalcDialogCenter.getDialogCenterLocation(getFrame(), helpDialog);
        helpDialog.setLocation(xyp.getX(), xyp.getY());
        helpDialog.setVisible(true);
    }
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.