blob: 19c88945fd478ff8091e7052e136090d23820443 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.core.refactoring;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.debug.core.IJavaWatchpoint;
/**
* @since 3.2
*
*/
public abstract class WatchpointChange extends LineBreakpointChange {
private String fFieldName;
private boolean fAccess, fModification;
public WatchpointChange(IJavaWatchpoint watchpoint) throws CoreException {
super(watchpoint);
fFieldName = watchpoint.getFieldName();
fAccess = watchpoint.isAccess();
fModification = watchpoint.isModification();
}
protected String getFieldName() {
return fFieldName;
}
protected void apply(IJavaWatchpoint breakpoint) throws CoreException {
super.apply(breakpoint);
breakpoint.setAccess(fAccess);
breakpoint.setModification(fModification);
}
}