mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
added comment
This commit is contained in:
parent
f51b5492bb
commit
c1c4444ee9
1 changed files with 10 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2007, 2008 Wind River Systems and others.
|
* Copyright (c) 2007, 2010 Wind River Systems and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -37,7 +37,7 @@ import org.eclipse.ui.IEditorInput;
|
||||||
*/
|
*/
|
||||||
public class SourceFileInfo {
|
public class SourceFileInfo {
|
||||||
public final String fFileKey;
|
public final String fFileKey;
|
||||||
public final IStorage fFile;
|
public final IStorage fFile; // fEdition is subject to change; this records value given to us at construction
|
||||||
public IStorage fEdition;
|
public IStorage fEdition;
|
||||||
public BigInteger[] fLine2Addr;
|
public BigInteger[] fLine2Addr;
|
||||||
public Addr2Line[] fAddr2Line;
|
public Addr2Line[] fAddr2Line;
|
||||||
|
@ -184,4 +184,11 @@ public class SourceFileInfo {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see java.lang.Object#toString()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return fEdition.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue