blob: 9305dcb14242bf9c8b4bbf963ae0a634d14f80a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.views.breakpoints;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.ui.IMemento;
import org.eclipse.ui.IPersistableElement;
/**
* Adapter to save and restore breakpoints for a working set.
*/
public class BreakpointPersistableElementAdapter implements IPersistableElement {
private IBreakpoint fBreakpoint;
public static final String TAG_MARKER_ID = "TAG_MARKER_ID"; //$NON-NLS-1$
public static final String TAG_RESOURCE_FACTORY_ID = "TAG_RESOURCE_FACTORY_ID"; //$NON-NLS-1$
/**
* Constructs a new persitable element adapter for the given breakpoint.
*
* @param breakpoint the backing {@link IBreakpoint}
*/
public BreakpointPersistableElementAdapter(IBreakpoint breakpoint) {
fBreakpoint = breakpoint;
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPersistableElement#getFactoryId()
*/
@Override
public String getFactoryId() {
return "org.eclipse.debug.ui.elementFactory.breakpoints"; //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPersistableElement#saveState(org.eclipse.ui.IMemento)
*/
@Override
public void saveState(IMemento memento) {
IMarker marker = fBreakpoint.getMarker();
if (marker != null) {
IResource resource = marker.getResource();
IPersistableElement pe = resource.getAdapter(IPersistableElement.class);
if (pe != null) {
long id = marker.getId();
String longString = Long.toString(id);
memento.putString(TAG_MARKER_ID, longString);
memento.putString(TAG_RESOURCE_FACTORY_ID, pe.getFactoryId());
pe.saveState(memento);
}
}
}
}