mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Cosmetics.
This commit is contained in:
parent
df47a5c6f6
commit
b30316c094
1 changed files with 22 additions and 23 deletions
|
@ -23,7 +23,6 @@ import org.w3c.dom.Node;
|
|||
* The map entry container type.
|
||||
*/
|
||||
public class MapEntrySourceContainerType extends AbstractSourceContainerTypeDelegate {
|
||||
|
||||
private final static String ELEMENT_NAME = "mapEntry"; //$NON-NLS-1$
|
||||
private final static String BACKEND_PATH = "backendPath"; //$NON-NLS-1$
|
||||
private final static String LOCAL_PATH = "localPath"; //$NON-NLS-1$
|
||||
|
@ -31,39 +30,39 @@ public class MapEntrySourceContainerType extends AbstractSourceContainerTypeDele
|
|||
/* (non-Javadoc)
|
||||
* @see org.eclipse.debug.core.sourcelookup.ISourceContainerTypeDelegate#createSourceContainer(java.lang.String)
|
||||
*/
|
||||
public ISourceContainer createSourceContainer( String memento ) throws CoreException {
|
||||
Node node = parseDocument( memento );
|
||||
if ( node.getNodeType() == Node.ELEMENT_NODE ) {
|
||||
public ISourceContainer createSourceContainer(String memento) throws CoreException {
|
||||
Node node = parseDocument(memento);
|
||||
if (node.getNodeType() == Node.ELEMENT_NODE) {
|
||||
Element element = (Element)node;
|
||||
if ( ELEMENT_NAME.equals( element.getNodeName() ) ) {
|
||||
String path = element.getAttribute( BACKEND_PATH );
|
||||
IPath backend = new Path( path );
|
||||
if ( !backend.isValidPath( path ) ) {
|
||||
abort( InternalSourceLookupMessages.getString( "MapEntrySourceContainerType.0" ), null ); //$NON-NLS-1$
|
||||
if (ELEMENT_NAME.equals(element.getNodeName())) {
|
||||
String path = element.getAttribute(BACKEND_PATH);
|
||||
IPath backend = new Path(path);
|
||||
if (!backend.isValidPath(path)) {
|
||||
abort(InternalSourceLookupMessages.getString("MapEntrySourceContainerType.0"), null); //$NON-NLS-1$
|
||||
}
|
||||
path = element.getAttribute( LOCAL_PATH );
|
||||
IPath local = new Path( path );
|
||||
if ( !local.isValidPath( path ) ) {
|
||||
abort( InternalSourceLookupMessages.getString( "MapEntrySourceContainerType.1" ), null ); //$NON-NLS-1$
|
||||
path = element.getAttribute(LOCAL_PATH);
|
||||
IPath local = new Path(path);
|
||||
if (!local.isValidPath(path)) {
|
||||
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;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.debug.core.sourcelookup.ISourceContainerTypeDelegate#getMemento(org.eclipse.debug.core.sourcelookup.ISourceContainer)
|
||||
*/
|
||||
public String getMemento( ISourceContainer container ) throws CoreException {
|
||||
MapEntrySourceContainer entry = (MapEntrySourceContainer)container;
|
||||
public String getMemento(ISourceContainer container) throws CoreException {
|
||||
MapEntrySourceContainer entry = (MapEntrySourceContainer) container;
|
||||
Document document = newDocument();
|
||||
Element element = document.createElement( ELEMENT_NAME );
|
||||
element.setAttribute( BACKEND_PATH, entry.getBackendPath().toOSString() );
|
||||
element.setAttribute( LOCAL_PATH, entry.getLocalPath().toOSString() );
|
||||
document.appendChild( element );
|
||||
return serializeDocument( document );
|
||||
Element element = document.createElement(ELEMENT_NAME);
|
||||
element.setAttribute(BACKEND_PATH, entry.getBackendPath().toOSString());
|
||||
element.setAttribute(LOCAL_PATH, entry.getLocalPath().toOSString());
|
||||
document.appendChild(element);
|
||||
return serializeDocument(document);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue