changed sourcegenerator destination package
[vamsas.git] / src / org / vamsas / client / Client.java
1 /*
2  * Created on 15-Sep-2005
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.vamsas.client;
8
9 import java.beans.PropertyChangeListener;
10 import java.io.File;
11 import java.util.EventListener;
12
13 /**
14  * @author jimp
15  *
16  * TODO To change the template for this generated type comment go to
17  * Window - Preferences - Java - Code Style - Code Templates
18  */
19 public class Client implements IClient {
20
21   /* (non-Javadoc)
22    * @see org.vamsas.client.IClient#getAbout()
23    */
24   public String getAbout() {
25     // TODO Auto-generated method stub
26     return null;
27   }
28
29   /* (non-Javadoc)
30    * @see org.vamsas.client.IClient#getSessionUrn()
31    */
32   public String getSessionUrn() {
33     // TODO Auto-generated method stub
34     return null;
35   }
36
37   /* (non-Javadoc)
38    * @see org.vamsas.client.IClient#getSessionHandle()
39    */
40   public SessionHandle getSessionHandle() {
41     // TODO Auto-generated method stub
42     return null;
43   }
44
45   /* (non-Javadoc)
46    * @see org.vamsas.client.IClient#getClientHandle()
47    */
48   public ClientHandle getClientHandle() {
49     // TODO Auto-generated method stub
50     return null;
51   }
52
53   /* (non-Javadoc)
54    * @see org.vamsas.client.IClient#getUserHandle()
55    */
56   public UserHandle getUserHandle() {
57     // TODO Auto-generated method stub
58     return null;
59   }
60
61   /* (non-Javadoc)
62    * @see org.vamsas.client.IClient#finalizeClient()
63    */
64   public void finalizeClient() {
65     // TODO Auto-generated method stub
66
67   }
68
69   /* (non-Javadoc)
70    * @see org.vamsas.client.IClient#addDocumentUpdateHandler(java.util.EventListener)
71    */
72   public void addDocumentUpdateHandler(EventListener evt) {
73     // TODO Auto-generated method stub
74
75   }
76
77   /* (non-Javadoc)
78    * @see org.vamsas.client.IClient#getClientDocument()
79    */
80   public IClientDocument getClientDocument() {
81     // TODO Auto-generated method stub
82     return null;
83   }
84
85   /* (non-Javadoc)
86    * @see org.vamsas.client.IClient#updateDocument(org.vamsas.client.IClientDocument)
87    */
88   public void updateDocument(IClientDocument newdoc) {
89     // TODO Auto-generated method stub
90
91   }
92
93   /* (non-Javadoc)
94    * @see org.vamsas.client.IClient#storeDocument(java.io.File)
95    */
96   public void storeDocument(File location) {
97     // TODO Auto-generated method stub
98
99   }
100
101   /* (non-Javadoc)
102    * @see org.vamsas.client.IClient#addVorbaEventHandler(java.lang.String, java.beans.PropertyChangeListener)
103    */
104   public void addVorbaEventHandler(String EventChain, PropertyChangeListener evt) {
105     // TODO Auto-generated method stub
106
107   }
108
109   public static void main(String[] args) {
110   }
111 }