~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/instrument/cases/Executable.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.hibernate.test.instrument.cases;
2
 
 
3
 
/**
4
 
 * @author Steve Ebersole
5
 
 */
6
 
public interface Executable {
7
 
        public void prepare();
8
 
        public void execute() throws Exception;
9
 
        public void complete();
10
 
}