edu.wpi.ejutr.logger
Class EJUTRTargetFileInfo

java.lang.Object
  extended by edu.wpi.ejutr.logger.EJUTRTargetFileInfo

public class EJUTRTargetFileInfo
extends java.lang.Object

Singleton class that stores information that is input into the plugin through the wizard. The FileWriter class uses information contained here to direct its output to the proper file.

Author:
Ben Mohlenhoff - bigben@wpi.edu

Method Summary
 void clear()
          Clears all stored information from this object.
static EJUTRTargetFileInfo getInstance()
          Returns a shared handle to the singleton object.
 java.lang.String getTestContainer()
          Returns the testContainer.
 java.lang.String getTestFileName()
          Gets the testFileName.
 java.lang.String getTestMethodName()
          Gets the testMethodName.
 void setTestContainer(java.lang.String testContainer)
          Sets the testContainer.
 void setTestFileName(java.lang.String testFileName)
          Sets the testFileName.
 void setTestMethodName(java.lang.String testMethodName)
          Sets the testMethodName.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getTestContainer

public java.lang.String getTestContainer()
Returns the testContainer.

Returns:
the testContainer.

setTestContainer

public void setTestContainer(java.lang.String testContainer)
Sets the testContainer.

Parameters:
testContainer - the testContainer to set.

getTestFileName

public java.lang.String getTestFileName()
Gets the testFileName.

Returns:
the testFileName.

setTestFileName

public void setTestFileName(java.lang.String testFileName)
Sets the testFileName.

Parameters:
testFileName - the testFileName to set.

getTestMethodName

public java.lang.String getTestMethodName()
Gets the testMethodName.

Returns:
the testMethodName

setTestMethodName

public void setTestMethodName(java.lang.String testMethodName)
Sets the testMethodName.

Parameters:
testMethodName - the testMethodName to set.

getInstance

public static EJUTRTargetFileInfo getInstance()
Returns a shared handle to the singleton object.

Returns:
the handle.

clear

public void clear()
Clears all stored information from this object.