Line | Hits | Source |
---|---|---|
1 | /******************************************************************************* | |
2 | ||
3 | * Demetrix process modelling system | |
4 | ||
5 | * | |
6 | ||
7 | * Copyright (c) 2003, 2004 Dimitri A. Pissarenko | |
8 | ||
9 | * | |
10 | ||
11 | * This file is part of Demetrix. | |
12 | ||
13 | * | |
14 | ||
15 | * Demetrix is free software; you can redistribute it and/or modify | |
16 | ||
17 | * it under the terms of the GNU General Public License as published by | |
18 | ||
19 | * the Free Software Foundation; either version 2.1 of the License, or | |
20 | ||
21 | * (at your option) any later version. | |
22 | ||
23 | * | |
24 | ||
25 | * Demetrix is distributed in the hope that it will be useful, | |
26 | ||
27 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
28 | ||
29 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
30 | ||
31 | * GNU General Public License for more details. | |
32 | ||
33 | * | |
34 | ||
35 | * You should have received a copy of the GNU General Public License | |
36 | ||
37 | * along with Demetrix; if not, write to the Free Software | |
38 | ||
39 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
40 | ||
41 | * | |
42 | ||
43 | * For further information you may | |
44 | ||
45 | * | |
46 | ||
47 | * - send an e-mail in Russian, German or English to dimitri.pissarenko@gmx.net | |
48 | ||
49 | * - look at http://sourceforge.net/projects/demetrix/ | |
50 | ||
51 | * - look at http://demetrix.sourceforge.net/ | |
52 | ||
53 | * - look at http://members.inode.at/d.pissarenko/ | |
54 | ||
55 | * | |
56 | ||
57 | *****************************************************************************/ | |
58 | ||
59 | ||
60 | ||
61 | package net.sourceforge.demetrix.ui; | |
62 | ||
63 | ||
64 | ||
65 | import java.io.Serializable; | |
66 | ||
67 | import java.util.Vector; | |
68 | ||
69 | ||
70 | ||
71 | /** | |
72 | ||
73 | * @author Dimitri Pissarenko | |
74 | ||
75 | * | |
76 | ||
77 | */ | |
78 | ||
79 | public class DemetrixConfigurationData implements Serializable { | |
80 | ||
81 | private String databaseUrl; | |
82 | ||
83 | private Vector processChainIds; | |
84 | ||
85 | final static long serialVersionUID = 1L; | |
86 | ||
87 | ||
88 | ||
89 | public DemetrixConfigurationData() | |
90 | ||
91 | 0 | { |
92 | ||
93 | 0 | this.processChainIds=new Vector(); |
94 | ||
95 | 0 | this.setDatabaseUrl(""); |
96 | ||
97 | 0 | } |
98 | ||
99 | public String getDatabaseUrl() { | |
100 | ||
101 | 0 | return databaseUrl; |
102 | ||
103 | } | |
104 | ||
105 | ||
106 | ||
107 | public void setDatabaseUrl(String string) { | |
108 | ||
109 | 0 | databaseUrl = string; |
110 | ||
111 | 0 | } |
112 | ||
113 | public void addProcessChainId(String id) | |
114 | ||
115 | { | |
116 | ||
117 | 0 | this.processChainIds.add(id); |
118 | ||
119 | 0 | } |
120 | ||
121 | /** | |
122 | ||
123 | * @return | |
124 | ||
125 | */ | |
126 | ||
127 | public Vector getProcessChainIds() { | |
128 | ||
129 | 0 | return processChainIds; |
130 | ||
131 | } | |
132 | ||
133 | ||
134 | ||
135 | /** | |
136 | ||
137 | * @param vector | |
138 | ||
139 | */ | |
140 | ||
141 | public void setProcessChainIds(Vector vector) { | |
142 | ||
143 | 0 | processChainIds = vector; |
144 | ||
145 | 0 | } |
146 | ||
147 | ||
148 | ||
149 | } | |
150 |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |