com.cmpware.ide.views
Class HexDumpProvider

java.lang.Object
  extended by com.cmpware.ide.views.HexDumpProvider
All Implemented Interfaces:
ITextProvider

public class HexDumpProvider
extends java.lang.Object
implements ITextProvider

This class describes the model interface to the Hex dump Easy Text viewer.

Note that this view has been replaced by the MemoryView class. This view is kept in the distribution for backward compatibility and for user that may prefer this implementation. It will not, however, be displayed by default, although it may be manually displayed.

Copyright (c) 2004, 2005 Cmpware, Inc. All Rights Reserved.

Author:
SAG

Field Summary
static java.lang.String copyright
          Copyright string
 
Constructor Summary
HexDumpProvider()
           
 
Method Summary
 java.lang.String get(int startLine, int lineCount)
          /** This method returns a String used to represent the requested lines.
 int getMax()
          This method returns the largest line number possible.
 int getMin()
          This method returns the lowest line number possible.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

copyright

public static final java.lang.String copyright
Copyright string

See Also:
Constant Field Values
Constructor Detail

HexDumpProvider

public HexDumpProvider()
Method Detail

getMax

public int getMax()
Description copied from interface: ITextProvider
This method returns the largest line number possible. Note that line counting starts at zero.

Specified by:
getMax in interface ITextProvider
Returns:
This method returns the largest line number possible. Note that line counting starts at zero.

getMin

public int getMin()
Description copied from interface: ITextProvider
This method returns the lowest line number possible. Note that line counting starts at zero.

Specified by:
getMin in interface ITextProvider
Returns:
This method returns the lowest line number possible. Note that line counting starts at zero.

get

public java.lang.String get(int startLine,
                            int lineCount)
Description copied from interface: ITextProvider
/** This method returns a String used to represent the requested lines.

Specified by:
get in interface ITextProvider
Parameters:
startLine - The starting line.
lineCount - The number of lines returned.
Returns:
This method returns a String used to represent the requested lines.