Revision 23081 branches/v2_0_0_prep/libraries/libFMap_dataDB/src/org/gvsig/fmap/data/feature/db/jdbc/postgresql/PostgresqlExplorerParameters.java

View differences:

PostgresqlExplorerParameters.java
2 2

  
3 3
import org.gvsig.fmap.data.feature.db.jdbc.JDBCExplorerParameter;
4 4

  
5

  
5 6
public class PostgresqlExplorerParameters extends JDBCExplorerParameter {
6 7

  
7
	private boolean showInformationDBTables=false;
8

  
9 8
	public PostgresqlExplorerParameters() {
10 9
		super();
11 10
		this.setPort("5432");
......
21 20
		return PostgresqlExplorer.DATAEXPLORER_NAME;
22 21
	}
23 22

  
24
	public boolean isShowInformationDBTables() {
25
		return showInformationDBTables;
26
	}
27

  
28
	public void setShowInformationDBTables(boolean showInformationDBTables) {
29
		this.showInformationDBTables = showInformationDBTables;
30
	}
31

  
32 23
	public String getDescription() {
33 24
		return "Postgresql DataBase";
34 25
	}
35 26

  
36

  
37 27
}

Also available in: Unified diff