示例#1
0
  public void makeSessionList() {

    sessionList = new List(5, false);
    Vector theSessions = theAR.getSessions();
    int size = theSessions.size();

    for (int j = 0; j < size; j++) {
      Date d = (Date) theSessions.elementAt(j);
      sessionList.addItem(d.toString());
    }
  }