@ -44,12 +44,14 @@ public class MobileTemplateStylePane extends AbstractTemplateStylePane<MobileTem
private JPanel right ;
private JPanel right ;
private CardLayout card ;
private CardLayout card ;
private Set < Class < ? extends MobileTemplateStyle > > extraStyle = new HashSet < > ( ) ;
private Set < Class < ? extends MobileTemplateStyle > > extraStyle = new HashSet < > ( ) ;
private WCardTagLayout tagLayout ;
public MobileTemplateStylePane ( WCardTagLayout tagLayout ) {
public MobileTemplateStylePane ( WCardTagLayout tagLayout ) {
init ( tagLayout ) ;
init ( tagLayout ) ;
}
}
public void init ( WCardTagLayout tagLayout ) {
public void init ( WCardTagLayout tagLayout ) {
this . setLayout ( FRGUIPaneFactory . createBorderLayout ( ) ) ;
this . setLayout ( FRGUIPaneFactory . createBorderLayout ( ) ) ;
this . tagLayout = tagLayout ;
listModel = new DefaultListModel ( ) ;
listModel = new DefaultListModel ( ) ;
card = new CardLayout ( ) ;
card = new CardLayout ( ) ;
right = FRGUIPaneFactory . createCardLayout_S_Pane ( ) ;
right = FRGUIPaneFactory . createCardLayout_S_Pane ( ) ;
@ -147,4 +149,9 @@ public class MobileTemplateStylePane extends AbstractTemplateStylePane<MobileTem
list . addAll ( sets ) ;
list . addAll ( sets ) ;
return Collections . unmodifiableList ( list ) ;
return Collections . unmodifiableList ( list ) ;
}
}
@Override
public AbstractTemplateStylePane < MobileTemplateStyle > generateCleanPane ( ) {
return new MobileTemplateStylePane ( this . tagLayout ) ;
}
}
}