|
|
|
@ -24,7 +24,7 @@ public abstract class LabelBorderAttrPane extends ConditionAttrSingleConditionPa
|
|
|
|
|
public LabelBorderAttrPane(ConditionAttributesPane conditionAttributesPane, boolean isRemove, String label) { |
|
|
|
|
super(conditionAttributesPane, isRemove); |
|
|
|
|
nameLabel = new UILabel(label); |
|
|
|
|
linePane = new BorderAttriPane(); |
|
|
|
|
linePane = initBorderAttrPane(); |
|
|
|
|
|
|
|
|
|
if (isRemove) { |
|
|
|
|
this.add(nameLabel); |
|
|
|
@ -33,6 +33,10 @@ public abstract class LabelBorderAttrPane extends ConditionAttrSingleConditionPa
|
|
|
|
|
this.labelName = label; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected BorderAttriPane initBorderAttrPane(){ |
|
|
|
|
return new BorderAttriPane(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String nameForPopupMenuItem() { |
|
|
|
|
return labelName; |
|
|
|
|