Release 5.  Copyright ©1994-1998 by TipTop Software, Inc.  All Rights Reserved.






TTEditWInteractor




Inherits From: TTWInteractor
Declared In: <ObjAppKit/TTEditWInteractor.h>




Class Description

Edit-interactors provide a convenient way to interactively edit, test, debug, and execute code, all in one place.  See the "Interactors" section for more info.




Method Types

continueRunning:
executeCurrentLine:
executeOneStep:
executeSelection:
loadFile:
loadFileName:
runFromStart:
saveFile:
saveFileAs:
stopRunning:




Instance Methods

continueRunning:
  (void)continueRunning:sender

Continues line-by-line code execution from the current line.

See also:  -runFromStart:, -stopRunning:




executeCurrentLine:
  (void)executeCurrentLine:sender

Executes the current line in the interpreter.




executeOneStep:
  (void)executeOneStep:sender

Executes the current line and selects the next line.




executeSelection:
  (void)executeSelection:sender

Executes the selected text..




loadFile:
  (void)loadFile:sender

Runs an OpenPanel and loads the specified file into the edit text view.

See also:  -loadFileName:




loadFileName:
  (void)loadFileName:(NSString*)n

Loads the specified file into the edit text view.




runFromStart:
  (void)runFromStart:sender

Starts executing code line-by-line from the first line of code.




saveFile:
  (void)saveFile:sender

Saves the file.




saveFileAs:
  (void)saveFileAs:sender

Saves the file under a different file name (SavePanel is run).

See also:  -saveFile:




stopRunning:
  (void)stopRunning:sender

Stops line-by-line execution.




###