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

Quick Search    Search Deep

Source code: com/bdexx/macosx/CartonInterface.java


1   package com.bdexx.macosx;
2   import java.awt.event.*;
3   
4   /* Part of the hack to make the Mac top of screen menu work properly.
5    * This interface is implemented by OggCarton.
6    */
7   
8   
9   public interface CartonInterface{
10  
11  
12      void showAbout();
13      void showConfig();
14      void windowClosing(WindowEvent e);
15  }