|
|
|
@ -114,11 +114,10 @@ public class CustomStylePane extends MultiTabPane<Style> {
|
|
|
|
|
return tabPane.getSelectedIndex() == ONE_INDEX; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param ePane |
|
|
|
|
*/ |
|
|
|
|
public void dealWithBorder(ElementCasePane ePane) { |
|
|
|
|
this.reportPane = ePane; |
|
|
|
|
public void dealWithBorder() { |
|
|
|
|
if (reportPane == null) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
Object[] fourObjectArray = BorderUtils.createCellBorderObject(reportPane); |
|
|
|
|
|
|
|
|
|
if (fourObjectArray != null && fourObjectArray.length % LENGTH_FOUR == 0) { |
|
|
|
@ -130,7 +129,14 @@ public class CustomStylePane extends MultiTabPane<Style> {
|
|
|
|
|
(Color) fourObjectArray[THREE_INDEX]); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param ePane |
|
|
|
|
*/ |
|
|
|
|
public void dealWithBorder(ElementCasePane ePane) { |
|
|
|
|
this.reportPane = ePane; |
|
|
|
|
dealWithBorder(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|