java.awt.desktop.PreferencesEvent Java Examples

The following examples show how to use java.awt.desktop.PreferencesEvent. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NbApplicationAdapterJDK9.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public void handlePreferences(PreferencesEvent e) {
    handlePreferences();
}
 
Example #2
Source File: _AppEventHandler.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
void performUsing(final PreferencesHandler handler, final _NativeEvent event) {
    handler.handlePreferences(new PreferencesEvent());
}
 
Example #3
Source File: PreferencesCommand.java    From gcs with Mozilla Public License 2.0 4 votes vote down vote up
@Override
public void handlePreferences(PreferencesEvent event) {
    PreferencesWindow.display();
}
 
Example #4
Source File: DesktopHandler.java    From pcgen with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Override
public void handlePreferences(final PreferencesEvent preferencesEvent)
{
	PCGenUIManager.displayPreferencesDialog();
}
 
Example #5
Source File: DesktopHandler.java    From pcgen with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Override
public void handlePreferences(final PreferencesEvent preferencesEvent)
{
	PCGenUIManager.displayPreferencesDialog();
}