*** empty log message ***

git-svn-id: svn://10.0.0.236/trunk@45554 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
leila.garin%eng.sun.com
1999-09-01 23:17:55 +00:00
parent a77676c65e
commit 9673f06f0e
179 changed files with 21320 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/**
* @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);
}