Revision 43534 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/src/main/java/org/gvsig/fmap/dal/serverexplorer/filesystem/swing/FilesystemExplorerWizardPanel.java

View differences:

FilesystemExplorerWizardPanel.java
74 74

  
75 75
    private static String lastPath = null;
76 76
    private FilesystemExplorerWizardPanelController panel = null;
77

  
77
    private boolean tabularOnly;
78 78
    /**
79 79
     *
80 80
     */
81 81
    public FilesystemExplorerWizardPanel() {
82
        this(false);
83
    }
84
    
85
    public FilesystemExplorerWizardPanel(boolean tabularOnly) {
82 86
        super();
87
        this.tabularOnly = tabularOnly;
83 88
        this.addAncestorListener(new AncestorListener() {
84 89
            public void ancestorAdded(AncestorEvent ae) {
85 90
                initExplorer();
......
121 126
        gridBagConstraints.weighty = 1.0;
122 127

  
123 128
        panel = new FilesystemExplorerWizardPanelController(getMapContext(),explorer, filters);
129
        panel.setTabularOnly(this.tabularOnly);
124 130
        this.add(panel, gridBagConstraints);
125 131

  
126 132
    }

Also available in: Unified diff