Open wave. @param waveRef the wave ref @param isNewWave the is new wave @param participants the participants
(final WaveRef waveRef, final boolean isNewWave, final Set<ParticipantId> participants)
| 569 | * @param participants the participants |
| 570 | */ |
| 571 | private void openWave(final WaveRef waveRef, final boolean isNewWave, final Set<ParticipantId> participants) { |
| 572 | waveUnsavedIndicator.onNewHistory(History.getToken(), new SimpleResponseCallback () { |
| 573 | @Override |
| 574 | public void onCancel() { |
| 575 | // Do nothing |
| 576 | } |
| 577 | |
| 578 | @Override |
| 579 | public void onSuccess() { |
| 580 | openWaveImpl(waveRef, isNewWave, participants); |
| 581 | }}); |
| 582 | } |
| 583 | |
| 584 | /** |
| 585 | * Shows a wave in a wave panel. |
no test coverage detected