Package org.mcisb.ui.util

Examples of org.mcisb.ui.util.FileChooserUtils


   */
    public void process( RecordModelFactory recordModelFactory, NavigationTree navigationTree, NavigationTreeNode node )
    {
    try
    {
      final File file = new FileChooserUtils().getFile( "xml" ); //$NON-NLS-1$
     
      if( file != null )
      {
          new TrackerParser( file, recordModelFactory, node ).parse();
         
View Full Code Here


     *
     * @return boolean
     */
    public boolean process()
    {
      File file = new FileChooserUtils().getFile( "gal" ); //$NON-NLS-1$
     
      if (file==null) {
        return false;
      } // else {

View Full Code Here

   * @see pedro.plugins.PedroPlugin#process(pedro.model.RecordModelFactory, pedro.view.NavigationTree, pedro.view.NavigationTreeNode)
   */
    public void process( RecordModelFactory recordModelFactory, NavigationTree navigationTree, NavigationTreeNode node )
    {
    // Get the Zeiss MDB file:
    final File file = new FileChooserUtils().getFile( "mdb" ); //$NON-NLS-1$
   
   
    /* So, there are two possibilities here, one is that a spotter file has already been read,
     * in which case we should try and populate the rest of the model according to the old method.
     * The more likely scenario is that there is no spotter file and we need to key everything off
View Full Code Here

      SpotterImporter spotterImporter = new SpotterImporter(recordModelFactory, navigationTree, node1);
     
      if (spotterImporter.process()) {
        final NavigationTreeNode node = spotterImporter.getNode();
        // Get the Zeiss MDB file:
        final File file = new FileChooserUtils().getFile( "mdb" ); //$NON-NLS-1$

        if( file != null )
        {
          try
          {
View Full Code Here

TOP

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

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.