Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Adapter for 'IResource' in 'DisassemblyStorage'

Index: IExecFileInfo.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IExecFileInfo.java,v
retrieving revision 1.1
diff -u -r1.1 IExecFileInfo.java
--- IExecFileInfo.java 2 Dec 2002 23:22:22 -0000 1.1
+++ IExecFileInfo.java 2 Jan 2003 20:57:04 -0000
@@ -6,6 +6,8 @@
 
 package org.eclipse.cdt.debug.core.model;
 
+import org.eclipse.core.resources.IFile;
+
 /**
  * Provides access to executable file information.
  *
@@ -13,7 +15,9 @@
  */
 public interface IExecFileInfo
 {
+ public IFile getExecFile();
+
  public boolean isLittleEndian();
  
- public IGlobalVariable[] getGlobals();
+ public IGlobalVariable[] getGlobals(); 
 }

Back to the top