forked from External/mage
[plugins] Added plugins support to Mage.Client (jspf). Created Mage.Theme.Plugin. Please run Mage.Client/install_3d_party_libs.sh (.bat) once to put library to local maven repository.
This commit is contained in:
parent
4d6c70e390
commit
b356d2c7c1
22 changed files with 508 additions and 50 deletions
17
Mage.Common/src/mage/interfaces/plugin/ThemePlugin.java
Normal file
17
Mage.Common/src/mage/interfaces/plugin/ThemePlugin.java
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package mage.interfaces.plugin;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import javax.swing.JComponent;
|
||||
|
||||
import net.xeoh.plugins.base.Plugin;
|
||||
|
||||
/**
|
||||
* Interface for theme plugins
|
||||
*
|
||||
* @version 0.1 31.10.2010
|
||||
* @author nantuko
|
||||
*/
|
||||
public interface ThemePlugin extends Plugin {
|
||||
void apply(Map<String, JComponent> ui);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue