919293949596979899100101
@Override public void execute() { busyIndicatorView.hideBusyIndicator(); presenter.complete(); notifySuccess(); final PlaceRequest place = new PathPlaceRequest( newPath ); placeManager.goTo( place ); } }, new Command() {
9192939495969798
} public void open( final InboxPageRow row ) { final Path path = row.getPath(); if ( path != null ) { placeManager.goTo( new PathPlaceRequest( path ) ); } }
171172173174175176177178179180
@Override public void execute() { if ( fileActionCommand != null ) { fileActionCommand.execute( dataContent.getPath() ); } else { placeManager.goTo( new PathPlaceRequest( dataContent.getPath() ) ); } } } ); }
8687888990919293949596