org.problets.domain.template
Class ProcessedTemplate

java.lang.Object
  extended by org.problets.domain.template.ProcessedTemplate

public class ProcessedTemplate
extends java.lang.Object

Holds a sub-template of a problem template, the code corresponding to it in the code text, and for control constructs, a reference to the control construct object that will execute it.

Author:
Amruth Kumar

Constructor Summary
ProcessedTemplate(java.lang.String inTemplate)
           
 
Method Summary
 ControlModel getExecutor()
           
 int getLineNumber()
           
 java.lang.String getTemplate()
           
static void main(java.lang.String[] args)
           
 void setExecutor(ControlModel inExecutor)
           
 void setLineNumber(int inLineNumber)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProcessedTemplate

public ProcessedTemplate(java.lang.String inTemplate)
Method Detail

getLineNumber

public int getLineNumber()

getExecutor

public ControlModel getExecutor()

getTemplate

public java.lang.String getTemplate()

setLineNumber

public void setLineNumber(int inLineNumber)

setExecutor

public void setExecutor(ControlModel inExecutor)

main

public static void main(java.lang.String[] args)