com.maplesoft.client
Class MapleRequest

java.lang.Object
  |
  +--com.webpearls.data.xml.XMLObject
        |
        +--com.maplesoft.client.MapleRequest

public class MapleRequest
extends com.webpearls.data.xml.XMLObject

Creates an XMLObject representing a request to a Maple server.


Fields inherited from class com.webpearls.data.xml.XMLObject
cacheNum
 
Constructor Summary
MapleRequest()
          Creates a default Request object with an empty math string
MapleRequest(java.lang.String mathString)
          Creates a Request object set to evaluate the Maple command represented by mathString
MapleRequest(java.lang.String[] mathStringArray)
          Creates a Request object set to evaluate the sequence of Maple commands represented by mathStringArray[]
MapleRequest(java.lang.String[] mathStringArray, java.lang.String lock)
          Creates a Request object set to evaluate the sequence of Maple commands represented by mathStringArray[] using the given session lock string.
MapleRequest(java.lang.String mathString, java.lang.String lock)
          Creates a Request object set to evaluate the Maple command represented by mathString using the given session lock string.
 
Method Summary
 java.lang.String getMathstring()
          Gets the Maple math text for this request
 java.lang.String[] getMathstringarray()
          Gets the Maple math text for this request
 void setMathstring(java.lang.String mathString)
          Sets the Maple math text for this request
 void setMathstringarray(java.lang.String[] mathStringArray)
          Sets the Maple math text for this request
 
Methods inherited from class com.webpearls.data.xml.XMLObject
addChild, clearChildren, clearProperties, consume, copy, create, equals, getCacheLimit, getCacheSize, getChild, getChildren, getName, getProperties, getProperty, getValue, hashCode, hasProperty, parseString, readStream, removeChild, setCacheLimit, setName, setProperty, setValue, size, toString, walker, writeStream
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MapleRequest

public MapleRequest()
Creates a default Request object with an empty math string

MapleRequest

public MapleRequest(java.lang.String mathString)
Creates a Request object set to evaluate the Maple command represented by mathString
Parameters:
mathString - standard Maple compatible math text

MapleRequest

public MapleRequest(java.lang.String[] mathStringArray)
Creates a Request object set to evaluate the sequence of Maple commands represented by mathStringArray[]
Parameters:
mathStringArray - standard Maple compatible math text

MapleRequest

public MapleRequest(java.lang.String mathString,
                    java.lang.String lock)
Creates a Request object set to evaluate the Maple command represented by mathString using the given session lock string.
Parameters:
mathString - standard Maple compatible math text
lock - session lock

MapleRequest

public MapleRequest(java.lang.String[] mathStringArray,
                    java.lang.String lock)
Creates a Request object set to evaluate the sequence of Maple commands represented by mathStringArray[] using the given session lock string.
Parameters:
mathStringArray - standard Maple compatible math text
lock - session lock
Method Detail

setMathstring

public void setMathstring(java.lang.String mathString)
Sets the Maple math text for this request
Parameters:
mathString - standard Maple compatible math text
Returns:
void

getMathstring

public java.lang.String getMathstring()
Gets the Maple math text for this request
Returns:
mathString the MAPLE math text

setMathstringarray

public void setMathstringarray(java.lang.String[] mathStringArray)
Sets the Maple math text for this request
Parameters:
mathStringArray - standard Maple compatible math text
Returns:
void

getMathstringarray

public java.lang.String[] getMathstringarray()
Gets the Maple math text for this request
Returns:
mathStringArray the Maple math text