ConfirmDialog.java
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc.
3  * All rights reserved. This program is made available under the terms of the
4  * Eclipse Public License v1.0 which accompanies this distribution, and is
5  * available at http://www.eclipse.org/legal/epl-v10.html
6  * Contributors:
7  * General Robotix Inc.
8  * National Institute of Advanced Industrial Science and Technology (AIST)
9  */
17 package com.generalrobotix.ui.util;
18 
19 import java.awt.*;
20 import javax.swing.*;
21 
22 
26 @SuppressWarnings("serial")
27 public class ConfirmDialog extends AlertBox {
28  public ConfirmDialog(Frame owner, String caption, String message) {
29  super(owner, caption, JOptionPane.QUESTION_MESSAGE, YES_NO_TYPE);
30  setTitle(MessageBundle.get("dialog.comfirm.title"));
31  setCaption(caption);
32  setMessage(message);
33  }
34 
35  public ConfirmDialog(Frame owner, String caption, String message, int type) {
36  super(owner, caption, JOptionPane.QUESTION_MESSAGE, type);
37  setTitle(MessageBundle.get("dialog.comfirm.title"));
38  setCaption(caption);
39  setMessage(message);
40  }
41 }
com.generalrobotix.ui.util.MessageBundle.get
static final String get(String key)
Definition: MessageBundle.java:50
com.generalrobotix.ui.util.ConfirmDialog
Definition: ConfirmDialog.java:27
com.generalrobotix.ui.util.ConfirmDialog.ConfirmDialog
ConfirmDialog(Frame owner, String caption, String message, int type)
Definition: ConfirmDialog.java:35
type
png_infop png_charp png_int_32 png_int_32 int * type
Definition: png.h:2330
com.generalrobotix.ui.util.ConfirmDialog.ConfirmDialog
ConfirmDialog(Frame owner, String caption, String message)
Definition: ConfirmDialog.java:28
com.generalrobotix.ui.util.AlertBox
Definition: AlertBox.java:24
com.generalrobotix.ui.util.MessageBundle
Definition: MessageBundle.java:16


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Wed Sep 7 2022 02:51:02