ConfirmDialog.java
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc.
00003  * All rights reserved. This program is made available under the terms of the
00004  * Eclipse Public License v1.0 which accompanies this distribution, and is
00005  * available at http://www.eclipse.org/legal/epl-v10.html
00006  * Contributors:
00007  * General Robotix Inc.
00008  * National Institute of Advanced Industrial Science and Technology (AIST) 
00009  */
00017 package com.generalrobotix.ui.util;
00018 
00019 import java.awt.*;
00020 import javax.swing.*;
00021 
00022 
00026 @SuppressWarnings("serial")
00027 public class ConfirmDialog extends AlertBox {
00028     public ConfirmDialog(Frame owner, String caption, String message) {
00029         super(owner, caption, JOptionPane.QUESTION_MESSAGE, YES_NO_TYPE);
00030         setTitle(MessageBundle.get("dialog.comfirm.title"));
00031         setCaption(caption);
00032         setMessage(message);
00033     }
00034 
00035     public ConfirmDialog(Frame owner, String caption, String message, int type) {
00036         super(owner, caption, JOptionPane.QUESTION_MESSAGE, type);
00037         setTitle(MessageBundle.get("dialog.comfirm.title"));
00038         setCaption(caption);
00039         setMessage(message);
00040     }
00041 }


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Thu Apr 11 2019 03:30:15