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.
20 lines
574 B
20 lines
574 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); |
|
} |
|
}
|
|
|