Package org.mcisb.ui.util

Examples of org.mcisb.ui.util.FileChooserPanel


    prompt = resourceBundle.getString( "SpreadsheetSpecificationWizard.channelsPrompt" ); //$NON-NLS-1$
    propertyNameToKey.put( org.mcisb.beacon.spottedexperiment.PropertyNames.CHANNELS, prompt );
    options.put( prompt, new SpinnerNumberModel( DEFAULT_VALUE, MIN_VALUE, MAX_VALUE, STEP ) );
   
    // Add Excel FileChooser:
    addWizardComponent( new FileChooserWizardComponent( bean, new FileChooserPanel( parent, resourceBundle.getString( "SpreadsheetSpecificationWizard.excelTitle" ), ParameterPanel.DEFAULT_COLUMNS, new JFileChooser(), false, true, false, JFileChooser.FILES_ONLY, Arrays.asList( "xls" ) ), org.mcisb.util.PropertyNames.IMPORT_FILEPATHS ) ); //$NON-NLS-1$ //$NON-NLS-2$
   
    // Add options panel:
    addWizardComponent( new DefaultWizardComponent( bean, new DefaultParameterPanel( resourceBundle.getString( "SpreadsheetSpecificationWizard.optionsTitle" ), options, Preferences.userNodeForPackage( getClass() ) ), propertyNameToKey ) ); //$NON-NLS-1$
   
    init();
View Full Code Here


    prompt = resourceBundle.getString( "FileExporterWizard.excelPrompt" ); //$NON-NLS-1$
    propertyNameToKey.put( org.mcisb.beacon.spottedexperiment.PropertyNames.EXCEL, prompt );
    options.put( prompt, new Vector() );
   
    // Add output directory FileChooser:
    addWizardComponent( new FileChooserWizardComponent( bean, new FileChooserPanel( parent, resourceBundle.getString( "FileExporterWizard.directoryTitle" ), ParameterPanel.DEFAULT_COLUMNS, new JFileChooser(), false, true, false, JFileChooser.DIRECTORIES_ONLY ), org.mcisb.util.PropertyNames.EXPORT_FILEPATHS ) ); //$NON-NLS-1$
   
    // Add options panel:
    addWizardComponent( new DefaultWizardComponent( bean, new DefaultParameterPanel( resourceBundle.getString( "FileExporterWizard.optionsTitle" ), options, Preferences.userNodeForPackage( getClass() ) ), propertyNameToKey ) ); //$NON-NLS-1$
   
    init();
View Full Code Here

TOP

Related Classes of org.mcisb.ui.util.FileChooserPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.