1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2010-12-02 04:06:24 +00:00
parent df47a5c6f6
commit b30316c094

View file

@ -23,7 +23,6 @@ import org.w3c.dom.Node;
* The map entry container type. * The map entry container type.
*/ */
public class MapEntrySourceContainerType extends AbstractSourceContainerTypeDelegate { public class MapEntrySourceContainerType extends AbstractSourceContainerTypeDelegate {
private final static String ELEMENT_NAME = "mapEntry"; //$NON-NLS-1$ private final static String ELEMENT_NAME = "mapEntry"; //$NON-NLS-1$
private final static String BACKEND_PATH = "backendPath"; //$NON-NLS-1$ private final static String BACKEND_PATH = "backendPath"; //$NON-NLS-1$
private final static String LOCAL_PATH = "localPath"; //$NON-NLS-1$ private final static String LOCAL_PATH = "localPath"; //$NON-NLS-1$
@ -31,39 +30,39 @@ public class MapEntrySourceContainerType extends AbstractSourceContainerTypeDele
/* (non-Javadoc) /* (non-Javadoc)
* @see org.eclipse.debug.core.sourcelookup.ISourceContainerTypeDelegate#createSourceContainer(java.lang.String) * @see org.eclipse.debug.core.sourcelookup.ISourceContainerTypeDelegate#createSourceContainer(java.lang.String)
*/ */
public ISourceContainer createSourceContainer( String memento ) throws CoreException { public ISourceContainer createSourceContainer(String memento) throws CoreException {
Node node = parseDocument( memento ); Node node = parseDocument(memento);
if ( node.getNodeType() == Node.ELEMENT_NODE ) { if (node.getNodeType() == Node.ELEMENT_NODE) {
Element element = (Element)node; Element element = (Element)node;
if ( ELEMENT_NAME.equals( element.getNodeName() ) ) { if (ELEMENT_NAME.equals(element.getNodeName())) {
String path = element.getAttribute( BACKEND_PATH ); String path = element.getAttribute(BACKEND_PATH);
IPath backend = new Path( path ); IPath backend = new Path(path);
if ( !backend.isValidPath( path ) ) { if (!backend.isValidPath(path)) {
abort( InternalSourceLookupMessages.getString( "MapEntrySourceContainerType.0" ), null ); //$NON-NLS-1$ abort(InternalSourceLookupMessages.getString("MapEntrySourceContainerType.0"), null); //$NON-NLS-1$
} }
path = element.getAttribute( LOCAL_PATH ); path = element.getAttribute(LOCAL_PATH);
IPath local = new Path( path ); IPath local = new Path(path);
if ( !local.isValidPath( path ) ) { if (!local.isValidPath(path)) {
abort( InternalSourceLookupMessages.getString( "MapEntrySourceContainerType.1" ), null ); //$NON-NLS-1$ abort(InternalSourceLookupMessages.getString("MapEntrySourceContainerType.1"), null); //$NON-NLS-1$
} }
return new MapEntrySourceContainer( backend, local ); return new MapEntrySourceContainer(backend, local);
} }
abort( InternalSourceLookupMessages.getString( "MapEntrySourceContainerType.2" ), null ); //$NON-NLS-1$ abort(InternalSourceLookupMessages.getString("MapEntrySourceContainerType.2"), null); //$NON-NLS-1$
} }
abort( InternalSourceLookupMessages.getString( "MapEntrySourceContainerType.3" ), null ); //$NON-NLS-1$ abort(InternalSourceLookupMessages.getString("MapEntrySourceContainerType.3"), null); //$NON-NLS-1$
return null; return null;
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see org.eclipse.debug.core.sourcelookup.ISourceContainerTypeDelegate#getMemento(org.eclipse.debug.core.sourcelookup.ISourceContainer) * @see org.eclipse.debug.core.sourcelookup.ISourceContainerTypeDelegate#getMemento(org.eclipse.debug.core.sourcelookup.ISourceContainer)
*/ */
public String getMemento( ISourceContainer container ) throws CoreException { public String getMemento(ISourceContainer container) throws CoreException {
MapEntrySourceContainer entry = (MapEntrySourceContainer)container; MapEntrySourceContainer entry = (MapEntrySourceContainer) container;
Document document = newDocument(); Document document = newDocument();
Element element = document.createElement( ELEMENT_NAME ); Element element = document.createElement(ELEMENT_NAME);
element.setAttribute( BACKEND_PATH, entry.getBackendPath().toOSString() ); element.setAttribute(BACKEND_PATH, entry.getBackendPath().toOSString());
element.setAttribute( LOCAL_PATH, entry.getLocalPath().toOSString() ); element.setAttribute(LOCAL_PATH, entry.getLocalPath().toOSString());
document.appendChild( element ); document.appendChild(element);
return serializeDocument( document ); return serializeDocument(document);
} }
} }