You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
745 B
26 lines
745 B
package com.fr.plugin.demo; |
|
|
|
import com.fr.design.gui.frpane.AttributeChangeListener; |
|
import com.fr.extended.chart.AbstractExtendedStylePane; |
|
import com.fr.extended.chart.ExtendedScrollPane; |
|
|
|
import java.util.ArrayList; |
|
import java.util.List; |
|
|
|
/** |
|
* Created by shine on 2018/3/25. |
|
*/ |
|
public class DemoStylePane extends AbstractExtendedStylePane<DemoChart>{ |
|
|
|
public DemoStylePane(AttributeChangeListener listener) { |
|
super(listener); |
|
} |
|
|
|
@Override |
|
protected List<ExtendedScrollPane<DemoChart>> initPaneList() { |
|
List<ExtendedScrollPane<DemoChart>> list = new ArrayList<ExtendedScrollPane<DemoChart>>(); |
|
list.add(new DemoTitlePane()); |
|
list.add(new DemoBackgroundPane()); |
|
return list; |
|
} |
|
}
|
|
|