Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.swing / org.gvsig.fmap.dal.swing.api / src / main / java / org / gvsig / fmap / dal / swing / dataStoreParameters / DataStoreParametersPanel.java @ 43208

History | View | Annotate | Download (930 Bytes)

1 42754 jjdelcerro
2 43208 jjdelcerro
package org.gvsig.fmap.dal.swing.dataStoreParameters;
3 42754 jjdelcerro
4 43172 fdiaz
import org.gvsig.tools.dynform.JDynForm;
5 42754 jjdelcerro
import org.gvsig.tools.dynobject.DynObject;
6
import org.gvsig.tools.swing.api.Component;
7
8
9 43208 jjdelcerro
public interface DataStoreParametersPanel extends Component {
10 42754 jjdelcerro
11
    /**
12
     * Sets the value of parameters in the panel.
13 43172 fdiaz
     *
14 42754 jjdelcerro
     * @param parameters to get the values and set in the panel
15
     */
16
    public void putParameters(DynObject parameters);
17
18
    /**
19
     * Gets the values of from the panel and set in the passed parameters.
20 43172 fdiaz
     *
21 42754 jjdelcerro
     * @param parameters to put in the panel values
22
     */
23
    public void fetchParameters(DynObject parameters);
24 43172 fdiaz
25 42775 jjdelcerro
    public void setExcludeGeometryOptions(boolean exclude);
26 43172 fdiaz
27 42775 jjdelcerro
    public boolean getExcludeGeometryOptions();
28 43172 fdiaz
29
    /**
30
     * Return the JDynForm of this panel.
31
     * Can return null if this panel don't have a JDynForm.
32
     *
33
     * @return
34
     */
35
    public JDynForm getForm();
36 42754 jjdelcerro
}