KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > SplashDialog


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc;
5
6 import org.dijon.Dialog;
7 import org.dijon.DialogResource;
8
9 import java.awt.Frame JavaDoc;
10
11 public class SplashDialog extends Dialog {
12   public SplashDialog(Frame JavaDoc parent, boolean modal) {
13     super(parent, modal);
14   }
15   
16   public void load(DialogResource dialogRes) {
17     super.load(dialogRes);
18   }
19 }
20
Popular Tags