forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
574 B
21 lines
574 B
6 years ago
|
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);
|
||
|
}
|
||
|
}
|