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

added comment

This commit is contained in:
John Cortell 2010-02-12 19:55:01 +00:00
parent f51b5492bb
commit c1c4444ee9

View file

@ -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
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -37,7 +37,7 @@ import org.eclipse.ui.IEditorInput;
*/
public class SourceFileInfo {
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 BigInteger[] fLine2Addr;
public Addr2Line[] fAddr2Line;
@ -183,5 +183,12 @@ public class SourceFileInfo {
}
return -1;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return fEdition.toString();
}
}