Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/sol/TestParser.java


1   /*
2    * Created on Jun 13, 2003
3    *
4    * To change the template for this generated file go to
5    * Window>Preferences>Java>Code Generation>Code and Comments
6    */
7   package com.sol;
8   
9   import com.vinculum.xml.VCMParser;
10  import org.w3c.dom.Document;
11  import org.w3c.dom.NodeList;
12  import org.w3c.dom.Node;
13  import org.w3c.dom.Element;
14  import com.vinculum.engine.VCMworkflow;
15  
16  import javax.servlet.http.HttpServletRequest;
17  
18  /**
19   * @author administrator
20   *
21   * To change the template for this generated type comment go to
22   * Window>Preferences>Java>Code Generation>Code and Comments
23   */
24  public class TestParser extends VCMParser 
25  {
26    public TestParser()
27    {
28      super();
29    }
30    
31    public void parse2( String xmlFile )  
32    {
33  
34    }
35    
36    public void handleRequest( HttpServletRequest req )  
37    {
38      System.out.println("Initiating the process in the 'START' element");
39    }
40  }