Exemple #1
0
  /**
   * サーバー選択領域を取得します。
   *
   * @return サーバー選択領域
   */
  public ACPanel getServerSelects() {
    if (serverSelects == null) {

      serverSelects = new ACPanel();

      serverSelects.setAutoWrap(false);

      addServerSelects();
    }
    return serverSelects;
  }
Exemple #2
0
  /**
   * クライアント領域を取得します。
   *
   * @return クライアント領域
   */
  public ACPanel getContents() {
    if (contents == null) {

      contents = new ACPanel();

      contents.setAutoWrap(false);

      addContents();
    }
    return contents;
  }