1 11 package org.eclipse.ltk.ui.refactoring; 12 13 import org.eclipse.core.runtime.Assert; 14 15 import org.eclipse.ltk.core.refactoring.Change; 16 17 26 public class ChangePreviewViewerInput { 27 private Change fChange; 28 29 34 public ChangePreviewViewerInput(Change change) { 35 Assert.isNotNull(change); 36 fChange= change; 37 } 38 39 44 public Change getChange() { 45 return fChange; 46 } 47 } 48 | Popular Tags |