Package jp.go.aist.sot.client.gui.panel

Examples of jp.go.aist.sot.client.gui.panel.CertDetailPanel


    private JDialog dialog;
    private CertDetailPanel detailsPanel;
   
    public CertDetailWindow(Frame frame) {
       
        detailsPanel = new CertDetailPanel();

        dialog = new JDialog(frame);
        dialog.setTitle(mh.getMessage("title"));       
        dialog.getContentPane().add(detailsPanel);
        dialog.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
View Full Code Here

TOP

Related Classes of jp.go.aist.sot.client.gui.panel.CertDetailPanel

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.