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.
24 lines
610 B
24 lines
610 B
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); |
|
} |
|
}
|
|
|