@ -73,6 +73,7 @@ public class CellExpandExtraAttrPane extends JPanel {
}
}
public void populate ( TemplateCellElement cellElement ) {
public void populate ( TemplateCellElement cellElement ) {
refreshExtraPanel ( ) ;
this . cellElement = cellElement ;
this . cellElement = cellElement ;
if ( extras ! = null ) {
if ( extras ! = null ) {
for ( BasicBeanPane < TemplateCellElement > extra : extras ) {
for ( BasicBeanPane < TemplateCellElement > extra : extras ) {
@ -91,6 +92,17 @@ public class CellExpandExtraAttrPane extends JPanel {
}
}
private void refresh ( ) {
private void refresh ( ) {
refreshExtraPanel ( ) ;
if ( this . cellElement ! = null ) {
if ( extras ! = null ) {
for ( BasicBeanPane < TemplateCellElement > extra : extras ) {
extra . populateBean ( cellElement ) ;
}
}
}
}
private void refreshExtraPanel ( ) {
this . removeAll ( ) ;
this . removeAll ( ) ;
if ( extras = = null ) {
if ( extras = = null ) {
extras = new ArrayList < > ( ) ;
extras = new ArrayList < > ( ) ;
@ -99,12 +111,14 @@ public class CellExpandExtraAttrPane extends JPanel {
Set < CellExpandAttrPanelProvider > attrProviders = ExtraDesignClassManager . getInstance ( ) . getArray ( CellExpandAttrPanelProvider . MARK_STRING ) ;
Set < CellExpandAttrPanelProvider > attrProviders = ExtraDesignClassManager . getInstance ( ) . getArray ( CellExpandAttrPanelProvider . MARK_STRING ) ;
if ( attrProviders ! = null ) {
if ( attrProviders ! = null ) {
for ( CellExpandAttrPanelProvider attrProvider : attrProviders ) {
for ( CellExpandAttrPanelProvider attrProvider : attrProviders ) {
if ( attrProvider . isDisplayable ( ) ) {
BasicBeanPane < TemplateCellElement > extra = attrProvider . createPanel ( ) ;
BasicBeanPane < TemplateCellElement > extra = attrProvider . createPanel ( ) ;
if ( extra ! = null ) {
if ( extra ! = null ) {
extras . add ( extra ) ;
extras . add ( extra ) ;
}
}
}
}
}
}
}
Component [ ] [ ] components = new Component [ extras . size ( ) ] [ DEFAULT_COMPONENT_SIZE ] ;
Component [ ] [ ] components = new Component [ extras . size ( ) ] [ DEFAULT_COMPONENT_SIZE ] ;
for ( int i = 0 ; i < extras . size ( ) ; i + + ) {
for ( int i = 0 ; i < extras . size ( ) ; i + + ) {
@ -115,9 +129,6 @@ public class CellExpandExtraAttrPane extends JPanel {
double [ ] columnSize = { TableLayout . PREFERRED , TableLayout . FILL } ;
double [ ] columnSize = { TableLayout . PREFERRED , TableLayout . FILL } ;
JPanel content = TableLayoutHelper . createGapTableLayoutPane ( components , rowSize , columnSize , H_GAP , V_GAP ) ;
JPanel content = TableLayoutHelper . createGapTableLayoutPane ( components , rowSize , columnSize , H_GAP , V_GAP ) ;
this . add ( content , BorderLayout . CENTER ) ;
this . add ( content , BorderLayout . CENTER ) ;
if ( this . cellElement ! = null ) {
this . populate ( cellElement ) ;
}
this . validate ( ) ;
this . validate ( ) ;
this . repaint ( ) ;
this . repaint ( ) ;
}
}