KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > contineo > setup > DBProtocol


1 /*
2  * DBProtocol.java
3  *
4  * Created on 7. Februar 2004, 18:24
5  */

6
7 package org.contineo.setup;
8
9 /**
10  *
11  * @author Michael Scholz
12  */

13 public class DBProtocol {
14     
15     /**
16      * @uml.property name="logs"
17      */

18     private String JavaDoc logs = "";
19     
20     /** Creates a new instance of DBProtocol */
21     public DBProtocol() {
22     }
23
24     /**
25      *
26      * @uml.property name="logs"
27      */

28     public String JavaDoc getLogs() {
29         return logs;
30     }
31
32     /**
33      *
34      * @uml.property name="logs"
35      */

36     public void setLogs(String JavaDoc lgs) {
37         logs = lgs;
38     }
39
40 }
41
Popular Tags