Revision 24250 branches/v2_0_0_prep/libraries/libFMap_dataDB/src/org/gvsig/fmap/data/feature/db/DBExplorerParameters.java

View differences:

DBExplorerParameters.java
27 27
	}
28 28

  
29 29
	public String getDb() {
30
		return (String) this.get("db");
30
		return (String) this.getAttribute("db");
31 31
	}
32 32

  
33 33
	public void setDb(String db) {
34 34
		this.put("db", db);
35 35
	}
36 36
	public String getHost() {
37
		return (String) this.get("host");
37
		return (String) this.getAttribute("host");
38 38
	}
39 39
	public void setHost(String host) {
40 40
		this.put("host", host);
41 41
	}
42 42
	public String getPort() {
43
		return (String) this.get("port");
43
		return (String) this.getAttribute("port");
44 44
	}
45 45
	public void setPort(String port) {
46 46
		this.put("port", port);
47 47
	}
48 48
	public String getSchema() {
49
		return (String) this.get("schema");
49
		return (String) this.getAttribute("schema");
50 50
	}
51 51
	public void setSchema(String schema) {
52 52
		this.put("schema", schema);
53 53
	}
54 54
	public String getPassw() {
55
		return (String) this.get("passw");
55
		return (String) this.getAttribute("passw");
56 56
	}
57 57
	public void setPassw(String passw) {
58 58
		this.put("passw", passw);
59 59
	}
60 60

  
61 61
	public String getUser() {
62
		return (String) this.get("user");
62
		return (String) this.getAttribute("user");
63 63
	}
64 64

  
65 65
	public void setUser(String user) {
66 66
		this.put("user", user);
67 67
	}
68 68
	public String getCatalog() {
69
		return (String) this.get("catalog");
69
		return (String) this.getAttribute("catalog");
70 70
	}
71 71
	public void setCatalog(String catalog) {
72 72
		this.put("catalog", catalog);

Also available in: Unified diff