1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

Typo fixes from Tom Tromey.

This commit is contained in:
Alain Magloire 2002-08-15 05:56:15 +00:00
parent b633a55f0d
commit db29a5583c

View file

@ -10,7 +10,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
/** /**
* *
* A contiguos segment of memory in an execution context. A memory * A contiguous segment of memory in an execution context. A memory
* block is represented by a starting memory address and a length. * block is represented by a starting memory address and a length.
* *
* @since Jul 18, 2002 * @since Jul 18, 2002
@ -71,7 +71,7 @@ public interface ICDIMemoryBlock extends ICDIObject
*/ */
void setValue( long offset, byte[] bytes ) throws CDIException; void setValue( long offset, byte[] bytes ) throws CDIException;
boolean isFreezed(); boolean isFrozen();
void setFreezed( boolean freezed ); void setFrozen( boolean frozen );
} }