类 SmcSamplePostProcessorProvider

java.lang.Object
com.tlcsdm.smc.provider.SmcSamplePostProcessorProvider
所有已实现的接口:
SamplePostProcessorService

public class SmcSamplePostProcessorProvider extends Object implements SamplePostProcessorService
  • 字段概要

    字段
    修饰符和类型
    字段
    说明
    private static final javafx.scene.control.CheckBoxTreeItem<String>
     
    private static final List<cn.hutool.core.lang.tree.TreeNode<String>>
     
    static String
     
    static String
     
    static String
     
    static String
     
    private static org.controlsfx.control.CheckTreeView<String>
     

    从接口继承的字段 com.tlcsdm.frame.service.SamplePostProcessorService

    Samples
  • 构造器概要

    构造器
    构造器
    说明
     
  • 方法概要

    修饰符和类型
    方法
    说明
    private void
    buildTree(cn.hutool.core.lang.tree.TreeNode<String> n, javafx.collections.ObservableList<javafx.scene.control.TreeItem<Sample>> list, javafx.scene.control.CheckBoxTreeItem<String> item)
     
    static List<cn.hutool.core.lang.tree.TreeNode<String>>
     
    static org.controlsfx.control.CheckTreeView<String>
    sampleTree.getCheckModel().getCheckedItems().addListener((ListChangeListener<TreeItem<String>>) change -> { System.out.println("getCheckedItems"); System.out.println(change.getList()); while (change.next()) { System.out.println("============================================"); System.out.println("Change: " + change); System.out.println("Added sublist " + change.getAddedSubList()); System.out.println("Removed sublist " + change.getRemoved()); System.out.println("List " + change.getList()); System.out.println("Added " + change.wasAdded() + " Permutated " + change.wasPermutated() + " Removed " + change.wasRemoved() + " Replaced " + change.wasReplaced() + " Updated " + change.wasUpdated()); System.out.println("============================================"); } });
    void
    Samples 后置处理

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 字段详细资料

    • sampleNodeList

      private static final List<cn.hutool.core.lang.tree.TreeNode<String>> sampleNodeList
    • root

      private static final javafx.scene.control.CheckBoxTreeItem<String> root
    • sampleTree

      private static org.controlsfx.control.CheckTreeView<String> sampleTree
    • SAMPLES_ROOTID

      public static String SAMPLES_ROOTID
    • SAMPLES_DEPTH

      public static String SAMPLES_DEPTH
    • SAMPLES_FOLDER

      public static String SAMPLES_FOLDER
    • SAMPLES_XMLPREFIX

      public static String SAMPLES_XMLPREFIX
  • 构造器详细资料

    • SmcSamplePostProcessorProvider

      public SmcSamplePostProcessorProvider()
  • 方法详细资料

    • postProcessBeanFactory

      public void postProcessBeanFactory()
      从接口复制的说明: SamplePostProcessorService
      Samples 后置处理
      指定者:
      postProcessBeanFactory 在接口中 SamplePostProcessorService
    • buildTree

      private void buildTree(cn.hutool.core.lang.tree.TreeNode<String> n, javafx.collections.ObservableList<javafx.scene.control.TreeItem<Sample>> list, javafx.scene.control.CheckBoxTreeItem<String> item)
    • getSampleNodeList

      public static List<cn.hutool.core.lang.tree.TreeNode<String>> getSampleNodeList()
    • getSampleTree

      public static org.controlsfx.control.CheckTreeView<String> getSampleTree()
      
               sampleTree.getCheckModel().getCheckedItems().addListener((ListChangeListener<TreeItem<String>>) change -> {
                   System.out.println("getCheckedItems");
                   System.out.println(change.getList());
                   while (change.next()) {
                       System.out.println("============================================");
                       System.out.println("Change: " + change);
                       System.out.println("Added sublist " + change.getAddedSubList());
                       System.out.println("Removed sublist " + change.getRemoved());
                       System.out.println("List " + change.getList());
                       System.out.println("Added " + change.wasAdded() + " Permutated " + change.wasPermutated() + " Removed " + change.wasRemoved() + " Replaced "
                           + change.wasReplaced() + " Updated " + change.wasUpdated());
                       System.out.println("============================================");
                   }
               });
       
      返回: