1 11 package org.eclipse.ltk.core.refactoring; 12 13 import org.eclipse.text.edits.TextEditGroup; 14 15 26 public class TextEditChangeGroup extends TextEditBasedChangeGroup { 27 28 35 public TextEditChangeGroup(TextChange change, TextEditGroup group) { 36 super(change, group); 37 } 38 39 44 public TextChange getTextChange() { 45 return (TextChange) getTextEditChange(); 46 } 47 } 48 | Popular Tags |