/** * サーバー選択領域を取得します。 * * @return サーバー選択領域 */ public ACPanel getServerSelects() { if (serverSelects == null) { serverSelects = new ACPanel(); serverSelects.setAutoWrap(false); addServerSelects(); } return serverSelects; }
/** * クライアント領域を取得します。 * * @return クライアント領域 */ public ACPanel getContents() { if (contents == null) { contents = new ACPanel(); contents.setAutoWrap(false); addContents(); } return contents; }