01: package net.sourceforge.squirrel_sql.plugins.userscript.kernel;
02:
03: /**
04: * This class exeist because of a bug in the XMLBeanReader.
05: * It can't read a String[] into a bean.
06: *
07: */
08: public class ClassPathEntry {
09: private String m_entry;
10:
11: public ClassPathEntry(String entry) {
12: m_entry = entry;
13: }
14:
15: public ClassPathEntry() {
16: }
17:
18: public String getEntry() {
19: return m_entry;
20: }
21:
22: public void setEntry(String entry) {
23: m_entry = entry;
24: }
25:
26: }
|