forked from fanruan/finekit
Palin
5 years ago
7 changed files with 106 additions and 1 deletions
@ -0,0 +1,12 @@ |
|||||||
|
package com.fanruan.api.Formula; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Palin |
||||||
|
* @version 10.0 |
||||||
|
* Created by Palin on 2019/9/16 0016 |
||||||
|
*/ |
||||||
|
public abstract class BaseFormula extends com.fr.base.BaseFormula{ |
||||||
|
public BaseFormula(String var1) { |
||||||
|
this.content = var1; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,40 @@ |
|||||||
|
package com.fanruan.api.design.ui.layout; |
||||||
|
|
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import java.awt.LayoutManager; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Palin |
||||||
|
* @version 10.0 |
||||||
|
* Created by Palin on 2019/9/16 0016 |
||||||
|
*/ |
||||||
|
public class FRGUIPaneFactoryKit { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建边框 |
||||||
|
*/ |
||||||
|
public static LayoutManager createBorderLayout() { |
||||||
|
return new BorderLayout(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建边框布局框格 |
||||||
|
*/ |
||||||
|
public static JPanel createBorderLayout_S_Pane() { |
||||||
|
JPanel var0 = new JPanel(); |
||||||
|
var0.setLayout(createBorderLayout()); |
||||||
|
return var0; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建普通流内部容器框格 |
||||||
|
*/ |
||||||
|
public static JPanel createNormalFlowInnerContainer_S_Pane() { |
||||||
|
JPanel var0 = new JPanel(); |
||||||
|
var0.setLayout(new FlowLayout(0)); |
||||||
|
return var0; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
package com.fanruan.api.macro; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Palin |
||||||
|
* @version 10.0 |
||||||
|
* Created by Palin on 2019/9/16 0016 |
||||||
|
* 常量 |
||||||
|
*/ |
||||||
|
public class XCreatorConstants { |
||||||
|
public static final String PROPERTY_CATEGORY = "category"; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
package com.fanruan.api.report.form; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Palin |
||||||
|
* @version 10.0 |
||||||
|
* Created by Palin on 2019/9/13 0013 |
||||||
|
*/ |
||||||
|
public class WidgetName extends com.fr.stable.js.WidgetName{ |
||||||
|
} |
Loading…
Reference in new issue