Me podría dar su corrección o tal vez su opinión, Oliver Weiler? Quizás es demasiado viejo para usted ... pero soy nuevo en JAVA y GWT ... Quiero saber si este código es una solución buena y eficiente para este método obsoleto.
Google Tutorial dar esto: https://developers.google.com/web-toolkit/doc/latest/tutorial/codeclient#timestamp
private void updateTable(StockPrice[] prices) {
for (int i = 0; i < prices.length; i++) {
updateTable(prices[i]);
}
// Display timestamp showing last refresh.
lastUpdatedLabel.setText("Last update : " + DateTimeFormat.getMediumDateTimeFormat().format(new Date()));
}
pongo este lugar
private void updateTable(StockPrice[] prices) {
for (int i = 0; i < prices.length; i++) {
updateTable(prices[i]);
}
// Display timestamp showing last refresh.
DateTimeFormat format = DateTimeFormat.getFormat(DateTimeFormat.PredefinedFormat.DATE_TIME_MEDIUM);
lastUpdatedLabel.setText("Last update : " + format.format(new Date()));
}
No sabe por qué Google no actualizó este tutorial.
Mira una confirmación aquí: https://code.google.com/p/google-web-toolkit/issues/detail?id=8241#c3
Gracias a @qbektrix
Thx, trabajado. Aunque tuve que usar 'DATE_TIME_MEDIUM'. – helpermethod