|
|
|
|
@ -0,0 +1,20 @@
|
|
|
|
|
/**
|
|
|
|
|
* ====================== 具体产品(plugin包) ======================
|
|
|
|
|
* @author <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
* @version 1.0
|
|
|
|
|
* @created 26-10<EFBFBD><EFBFBD>-2025 23:19:02
|
|
|
|
|
*/
|
|
|
|
|
class ButtonPlugin implements UIPlugin {
|
|
|
|
|
|
|
|
|
|
public ButtonPlugin(){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void finalize() throws Throwable {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public void render(){
|
|
|
|
|
System.out.println("渲染按钮UI组件");
|
|
|
|
|
}
|
|
|
|
|
}//end ButtonPlugin
|