zjz1993
5 years ago
5 changed files with 69 additions and 7 deletions
@ -0,0 +1,8 @@
|
||||
package com.fanruan.api.design.macro; |
||||
|
||||
import java.awt.*; |
||||
|
||||
public class UIConstants { |
||||
Color UIPOPUPMENU_LINE_COLOR = new Color(13158861); |
||||
int ARC = 0; |
||||
} |
@ -0,0 +1,20 @@
|
||||
package com.fanruan.api.design.ui.component; |
||||
import java.awt.*; |
||||
|
||||
public class UIRoundedBorder extends com.fr.design.border.UIRoundedBorder{ |
||||
public UIRoundedBorder(Color color){ |
||||
super(color); |
||||
} |
||||
|
||||
public UIRoundedBorder(Color color, int thickness) { |
||||
super(color, thickness); |
||||
} |
||||
|
||||
public UIRoundedBorder(Color color, int thickness, int roundedCorners) { |
||||
super(color, thickness, roundedCorners); |
||||
} |
||||
|
||||
public UIRoundedBorder(int lineStyle, Color color, int roundedCorners) { |
||||
super(lineStyle, color, roundedCorners); |
||||
} |
||||
} |
@ -0,0 +1,4 @@
|
||||
package com.fanruan.api.design.ui.factory; |
||||
|
||||
public class FormulaFactory extends com.fr.design.formula.FormulaFactory{ |
||||
} |
Loading…
Reference in new issue