KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > client > beans > ParentFrameInterface


1 /*
2  * ParentFrameInterface.java
3  *
4  * Created on September 15, 2003, 7:31 AM
5  */

6
7 package com.quikj.client.beans;
8
9 import java.awt.*;
10 /**
11  *
12  * @author amit
13  */

14 public interface ParentFrameInterface
15 {
16     public void addToFrameList (Frame frame);
17     public void removeFromFrameList (Frame frame);
18 }
19
Popular Tags