KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hammurapi > inspectors > metrics > SqlExtractorPersistencyService


1 /*
2  * Created on Oct 16, 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.hammurapi.inspectors.metrics;
8
9 import org.hammurapi.HammurapiException;
10 import org.hammurapi.results.AnnotationContext;
11
12 /**
13  * @author 111001082
14  *
15  * TODO To change the template for this generated type comment go to
16  * Window - Preferences - Java - Code Style - Code Templates
17  */

18 public interface SqlExtractorPersistencyService {
19     /**
20      * Creating a table to store results
21      */

22     public abstract void init() throws HammurapiException;
23
24     public abstract void saveLanguageElement(final StringVariable strVar);
25
26     public abstract void render(AnnotationContext context, String JavaDoc path)
27             throws HammurapiException;
28
29     public abstract void destroy();
30 }
Popular Tags