1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

indentation

This commit is contained in:
Alain Magloire 2003-01-27 03:31:29 +00:00
parent 2ce5e5a378
commit 661845d422
3 changed files with 13 additions and 9 deletions

View file

@ -15,8 +15,8 @@ import org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener;
*
* @since Jul 10, 2002
*/
public interface ICDIEventManager extends ICDISessionObject
{
public interface ICDIEventManager extends ICDISessionObject {
/**
* Adds the given listener to the collection of registered
* event listeners. Has no effect if an identical listener is
@ -34,4 +34,5 @@ public interface ICDIEventManager extends ICDISessionObject
* @param listener - the listener to remove
*/
void removeEventListener( ICDIEventListener listener );
}

View file

@ -8,9 +8,11 @@ package org.eclipse.cdt.debug.core.cdi;
* Format constants.
*/
public interface ICDIFormat {
public static int NATURAL = 0;
public static int DECIMAL = 1;
public static int BINARY = 2;
public static int OCTAL = 3;
public static int HEXADECIMAL = 4;
final static int NATURAL = 0;
final static int DECIMAL = 1;
final static int BINARY = 2;
final static int OCTAL = 3;
final static int HEXADECIMAL = 4;
}

View file

@ -12,8 +12,8 @@ package org.eclipse.cdt.debug.core.cdi;
*
* @since Jul 9, 2002
*/
public interface ICDILocation
{
public interface ICDILocation {
/**
* Returns the address of this location.
*
@ -50,4 +50,5 @@ public interface ICDILocation
* place.
*/
boolean equals(ICDILocation location);
}