use of org.eclipse.che.plugin.maven.shared.dto.NotificationMessage in project che by eclipse.
the class MavenServerNotifier method setPercent.
@Override
public void setPercent(double percent) {
NotificationMessage dto = DtoFactory.newDto(NotificationMessage.class);
dto.setPercent(percent);
communication.sendNotification(dto);
}
Aggregations