View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import javax.swing.*;
4   
5   /***
6    * Interface for ViewManager demo.
7    */
8   public interface GB_VMDemo
9           extends
10              GB_Unregisterable
11  {
12      JFrame show(
13              boolean a_flagExitOnClose);
14  
15      Class getDemoClass();
16  }