Mozilla/mozilla/java/dom/tests/src/Execution.java
leila.garin%eng.sun.com 9673f06f0e *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@45554 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-01 23:17:55 +00:00

25 lines
418 B
Java
Executable File

/**
* @author Raju Pallath
* @version 1.0
*
* A interface which define the execute method. This interface is
* implemented by all Test Classes.
*
*/
package org.mozilla.dom.test;
public interface Execution
{
/**
*
* @param targetObj Object instance (Node/Document/....)
*
* @return Return true or false
*
*/
public boolean execute(Object targetObj);
}