| java.lang.Object csdl.jblanket.methodset.MethodSetManager
MethodSetManager | public class MethodSetManager (Code) | | Implements a Singleton design pattern for the container of method information
collected by JBlanket. This class is needed to avoid collisions when method
type signatures are stored by the JUnit test classes.
author: Joy M. Agustin version: $Id: MethodSetManager.java,v 1.1 2004/11/07 00:32:38 timshadel Exp $ |
Method Summary | |
public static synchronized MethodSetManager | getInstance() Gets the current instance of MethodSetManager. | public MethodSet | getMethodSet(String fileName) Gets the MethodSet instance corresponding to fileName from the
MethodSetManager instance.
Parameters: fileName - the name of the file the MethodSet instance will be store in. |
getInstance | public static synchronized MethodSetManager getInstance()(Code) | | Gets the current instance of MethodSetManager.
the MethodSetManager instance. |
getMethodSet | public MethodSet getMethodSet(String fileName)(Code) | | Gets the MethodSet instance corresponding to fileName from the
MethodSetManager instance.
Parameters: fileName - the name of the file the MethodSet instance will be store in. the MethodSet instance corresponding to fileName .If none exists, create a new one. |
|
|