forked from fanruan/finekit
zjz1993
5 years ago
6 changed files with 26 additions and 18 deletions
@ -1,8 +0,0 @@ |
|||||||
package com.fanruan.api.cal.formula; |
|
||||||
|
|
||||||
public class BaseFormula extends com.fr.base.BaseFormula{ |
|
||||||
@Override |
|
||||||
public String getXmlTag(){ |
|
||||||
return ""; |
|
||||||
} |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
package com.fanruan.api.config; |
|
||||||
|
|
||||||
public class DefaultConfiguration extends com.fr.config.DefaultConfiguration{ |
|
||||||
} |
|
@ -0,0 +1,24 @@ |
|||||||
|
package com.fanruan.api.design.ui.component; |
||||||
|
|
||||||
|
import javax.swing.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author zhaojunzhe |
||||||
|
* @version 10.0 |
||||||
|
* Created by zhaojunzhe on 2019-08-28 |
||||||
|
* checkbox组件 |
||||||
|
*/ |
||||||
|
public class UICheckBox extends com.fr.design.gui.icheckbox.UICheckBox{ |
||||||
|
|
||||||
|
public UICheckBox(String string){super(string);} |
||||||
|
|
||||||
|
public UICheckBox(){} |
||||||
|
|
||||||
|
public UICheckBox(String LocText, boolean b){ |
||||||
|
super(LocText, b); |
||||||
|
} |
||||||
|
|
||||||
|
public UICheckBox(String text, Icon icon){ |
||||||
|
super(text, icon); |
||||||
|
} |
||||||
|
} |
@ -1,5 +1,5 @@ |
|||||||
package com.fanruan.api.design.ui.component; |
package com.fanruan.api.design.ui.component; |
||||||
|
|
||||||
public class UIIntNumberField extends com.fr.design.gui.itextfield.UIIntNumberField { |
public class UIIntNumberField extends com.fr.design.gui.itextfield.UIIntNumberField { |
||||||
|
public UIIntNumberField(){}; |
||||||
} |
} |
||||||
|
@ -1,4 +1,4 @@ |
|||||||
package com.fanruan.api.util.eval.error; |
package com.fanruan.api.err; |
||||||
|
|
||||||
public class UtilEvalError extends com.fr.stable.UtilEvalError{ |
public class UtilEvalError extends com.fr.stable.UtilEvalError{ |
||||||
} |
} |
Loading…
Reference in new issue