Browse Source

rt

bugfix/10.0
XiaXiang 5 years ago
parent
commit
e20989d81d
  1. 9
      designer-base/src/main/java/com/fr/design/mainframe/vcs/ui/ActionLabel.java

9
designer-base/src/main/java/com/fr/design/mainframe/vcs/ui/ActionLabel.java

@ -10,7 +10,7 @@ import java.awt.event.ActionListener;
import java.awt.event.MouseEvent; import java.awt.event.MouseEvent;
/** /**
* Action label * Created by XiaXiang on 2019/5/15.
*/ */
public class ActionLabel extends UILabel { public class ActionLabel extends UILabel {
private ActionListener actionListener; private ActionListener actionListener;
@ -76,4 +76,11 @@ public class ActionLabel extends UILabel {
this.actionListener = actionListener; this.actionListener = actionListener;
} }
public Color getColor() {
return color;
}
public void setColor(Color color) {
this.color = color;
}
} }
Loading…
Cancel
Save