return this._model.getCookieCount();
}
public Object getValueAt(int rowIndex, int columnIndex) {
String key = this._model.getCookieAt(rowIndex);
Cookie cookie = this._model.getCurrentCookie(key);
switch (columnIndex) {
case 0: return cookie.getDomain();
case 1: return cookie.getPath();
case 2: return cookie.getName();
case 3: return cookie.getDate();
case 4: return cookie.getValue();
case 5: return Boolean.valueOf(cookie.getSecure());
case 6: return cookie.getMaxAge();
case 7: return cookie.getComment();
}
return null;
}