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

Quick Search    Search Deep

Source code: org/jext/gui/SkinFactory.java


1   /*
2    * 12:00:00 15/12/02
3    *
4    * SkinFactory.java - The generic Skin factory.
5    * Copyright (C) 2002 Paolo Giarrusso
6    * blaisorblade_work@yahoo.it
7    * www.jext.org
8    *
9    * This program is free software; you can redistribute it and/or
10   * modify it under the terms of the GNU General Public License
11   * as published by the Free Software Foundation; either version 2
12   * of the License, or any later version.
13   *
14   * This program is distributed in the hope that it will be useful,
15   * but WITHOUT ANY WARRANTY; without even the implied warranty of
16   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   * GNU General Public License for more details.
18   *
19   * You should have received a copy of the GNU General Public License
20   * along with this program; if not, write to the Free Software
21   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22   */
23  
24  package org.jext.gui;
25  
26  /**
27   * This is the generic SkinFactory base class.
28   * Override it to let Jext access a new skin group, plugin and so on; if
29   * the inheriting class is also a Plugin descendant the method is called 
30   * authomatically for you when loading the plugin.
31   * @author  Blaisorblade
32   */
33  
34  public interface SkinFactory
35  {
36    /**Must return an array of already constructed Skin's.*/
37    public Skin[] getSkins();
38  }
39  
40  // End of Skin.java