01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08: package com.gwtext.client.widgets;
09:
10: import com.gwtext.client.core.JsObject;
11:
12: public abstract class ComponentPlugin extends JsObject {
13:
14: static {
15: doInit();
16: }
17:
18: private static native void doInit()/*-{
19:
20: }-*/;
21:
22: public abstract void init(Component component);
23:
24: }
|