1 11 package org.eclipse.jdt.internal.debug.core.refactoring; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.jdt.debug.core.IJavaClassPrepareBreakpoint; 15 16 20 public abstract class ClassPrepareBreakpointChange extends BreakpointChange { 21 22 private int fMemberType; 23 24 public ClassPrepareBreakpointChange(IJavaClassPrepareBreakpoint breakpoint) throws CoreException { 25 super(breakpoint); 26 fMemberType = breakpoint.getMemberType(); 27 } 28 29 protected int getMemberType() { 30 return fMemberType; 31 } 32 33 } 34 | Popular Tags |