public class

InterpreterHistory

extends Object
implements IAsciiable
java.lang.Object
   ↳ com.pnfsoftware.jeb.util.interpreter.InterpreterHistory

Class Overview

Interpreter history objects, containing the list of commands previously issued to the interpreter.

Summary

Public Constructors
InterpreterHistory()
InterpreterHistory(String historyData)
Public Methods
String encode()
The implementor should encode the current object as a ASCII form like:
 param1=value1&param1=value2&...
ItemHistory<String> get()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.pnfsoftware.jeb.util.format.IAsciiable

Public Constructors

public InterpreterHistory ()

public InterpreterHistory (String historyData)

Public Methods

public String encode ()

The implementor should encode the current object as a ASCII form like:

 param1=value1&param1=value2&...
 
valueX can use separators that are neither . - * _ + % nor alphanumeric characters.

Returns
  • the encoded string

public ItemHistory<String> get ()