Package org.geotools.swing.data
Class JDataChoosePage
A wizard page that will allow the user to choose a format (ie DataAccess factory).
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected DataStoreFactorySpi
Factory for which we are collection connection parametersFields inherited from class JPage
backPageIdentifier, DEFAULT, FINISH, NEXT, nextPageIdentifier, pageIdentifier
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCalled to initialize the page for the first time.boolean
isValid()
Validation of page state; if the page isValid then the next or finish button will be enabled.void
Override this method to perform functionality just before the panel is to be hidden.void
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
-
Field Details
-
format
Factory for which we are collection connection parameters
-
-
Constructor Details
-
JDataChoosePage
public JDataChoosePage() -
JDataChoosePage
-
-
Method Details
-
createPanel
Description copied from class:JPage
Called 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:
createPanel
in classJPage
-
preDisplayPanel
public void preDisplayPanel()Description copied from class:JPage
Called 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:
preDisplayPanel
in classJPage
-
preClosePanel
public void preClosePanel()Description copied from class:JPage
Override this method to perform functionality just before the panel is to be hidden.- Overrides:
preClosePanel
in classJPage
-
isValid
public boolean isValid()Description copied from class:JPage
Validation 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.
-