Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/memoire/bu/BuDialogError.java


1   /**
2    * @modification $Date: 2001/12/03 16:28:07 $
3    * @statut       unstable
4    * @file         BuDialogError.java
5    * @version      0.36
6    * @author       Guillaume Desnoix
7    * @email        guillaume@desnoix.com
8    * @license      GNU General Public License 2 (GPL2)
9    * @copyright    1998-2001 Guillaume Desnoix
10   */
11  
12  package com.memoire.bu;
13  
14  import com.memoire.bu.*;
15  import com.memoire.dnd.*;
16  import com.memoire.fu.*;
17  import com.memoire.re.*;
18  
19  
20  import java.awt.*;
21  import java.awt.event.*;
22  import javax.swing.*;
23  import javax.swing.border.*;
24  
25  /**
26   * A standard error dialog (continue).
27   */
28  
29  public class BuDialogError
30         extends BuDialogMessage
31         implements ActionListener
32  {
33    public BuDialogError(BuCommonInterface      _parent,
34             BuInformationsSoftware _isoft,
35             Object                 _message)
36    {
37      super(_parent,_isoft,_message);
38      setTitle(BuResource.BU.getString("Erreur"));
39    }
40  }
41