Package org.geotools.swing.data
Class JParameterListPage
-
public class JParameterListPage extends JPage
A wizard page that will prompt the user for a file of the supplied format ask for any additional information.This page will allow the user to edit and modify the provided connectionParameters map - but will only show parameters that match the indicated "level". If level is null it assumed to be "user".
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,Object>connectionParametersConnection params for datastore-
Fields inherited from class JPage
backPageIdentifier, DEFAULT, FINISH, NEXT, nextPageIdentifier, pageIdentifier
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JPanelcreatePanel()Called to initialize the page for the first time.booleanisValid()Validation of page state; if the page isValid then the next or finish button will be enabled.voidpreClosePanel()Override this method to perform functionality just before the panel is to be hidden.voidpreDisplayPanel()Called just before the panel is to be displayed.-
Methods inherited from class JPage
dispose, getBackPageIdentifier, getJWizard, getModel, getNextPageIdentifier, getPageIdentifier, getPanel, postDisplayPanel, setBackPageIdentifier, setNextPageIdentifier, setPageIdentifier
-
-
-
-
Method Detail
-
createPanel
public JPanel createPanel()
Description copied from class:JPageCalled to initialize the page for the first time.Please note this method will normally only be called once; even if the user clicks forwards and backwards to return to your page. It is only called if getPanel() returns null.
Calling this method directly will erase any previously constructed panel.
- Overrides:
createPanelin classJPage
-
preDisplayPanel
public void preDisplayPanel()
Description copied from class:JPageCalled just before the panel is to be displayed.This is a good time to populate your fields with values; hook up any listeners and gernally muck about.
- Overrides:
preDisplayPanelin classJPage
-
preClosePanel
public void preClosePanel()
Description copied from class:JPageOverride this method to perform functionality just before the panel is to be hidden.- Overrides:
preClosePanelin classJPage
-
isValid
public boolean isValid()
Description copied from class:JPageValidation of page state; if the page isValid then the next or finish button will be enabled.If you need to call setNextPageIdentifier based on input this is the time to do it.
-
-