コード例 #1
0
ファイル: TestViewSupport.java プロジェクト: arberzal/esper
  public void setUp() {
    top = new SupportSchemaNeutralView("top");

    child_1 = new SupportSchemaNeutralView("1");
    child_2 = new SupportSchemaNeutralView("2");
    top.addView(child_1);
    top.addView(child_2);

    child_2_1 = new SupportSchemaNeutralView("2_1");
    child_2_2 = new SupportSchemaNeutralView("2_2");
    child_2.addView(child_2_1);
    child_2.addView(child_2_2);

    child_2_1_1 = new SupportSchemaNeutralView("2_1_1");
    child_2_2_1 = new SupportSchemaNeutralView("2_2_1");
    child_2_2_2 = new SupportSchemaNeutralView("2_2_2");
    child_2_1.addView(child_2_1_1);
    child_2_2.addView(child_2_2_1);
    child_2_2.addView(child_2_2_2);
  }