1 11 package org.eclipse.ui.internal.progress; 12 13 import org.eclipse.ui.progress.UIJob; 14 15 19 public class AwaitingFeedbackInfo { 20 21 private String message; 22 private UIJob job; 23 24 public AwaitingFeedbackInfo(String infoMessage, UIJob infoJob){ 25 this.message = infoMessage; 26 this.job = infoJob; 27 } 28 29 33 public UIJob getJob() { 34 return this.job; 35 } 36 37 41 public String getMessage() { 42 return this.message; 43 } 44 45 } 46 | Popular Tags |