WarningDialog.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 WarningDialog extends AlertBox {
28  public WarningDialog(Frame owner, String caption, String message) {
29  super(owner, caption, JOptionPane.WARNING_MESSAGE, OK_TYPE);
30  setTitle("Warning");
31  setCaption(caption);
32  setMessage(message);
33  }
34 
35  public WarningDialog(Dialog owner, String caption, String message) {
36  super(owner, caption, JOptionPane.WARNING_MESSAGE, OK_TYPE);
37  setTitle("Warning");
38  setCaption(caption);
39  setMessage(message);
40  }
41 }
WarningDialog(Frame owner, String caption, String message)
WarningDialog(Dialog owner, String caption, String message)


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Sat May 8 2021 02:42:41