Package com.jme3.system
Interface JmeDialogsFactory
public interface JmeDialogsFactory
- 
Method SummaryModifier and TypeMethodDescriptionvoidshowErrorDialog(String message) Set function to handle errors.booleanshowSettingsDialog(AppSettings settings, boolean loadFromRegistry) Set a function to handle app settings.
- 
Method Details- 
showSettingsDialogSet a function to handle app settings. The default implementation shows a settings dialog if available.- Parameters:
- settings- the settings object to edit
- loadFromRegistry- if true, copy the settings, otherwise merge them
- Returns:
- true to continue, false to exit the application
 
- 
showErrorDialogSet function to handle errors. The default implementation show a dialog if available.- Parameters:
- message- text to be displayed in the dialog
 
 
-