Examples of open()


Examples of hidb2.gui.editor.DlgAttrChecker.open()

                            "Ok", "Cancel"
                        }, 0);

                  AttrChecker curAck = (AttrChecker) getValue();

                  int rmsg = dlg.open(curAck);

                  return (rmsg == 0) ? curAck : null;
                  }
              };
            }
View Full Code Here

Examples of hidb2.gui.util.DlgImageViewer.open()

        DlgImageViewer div = new DlgImageViewer(wbwin.getShell());

        div.setPref(pref.getInt(PrefConst.P_IVR_MIN_ZOOM), pref.getInt(PrefConst.P_IVR_MAX_ZOOM), pref
            .getInt(PrefConst.P_IVR_DEFAULT_WIDTH), pref.getInt(PrefConst.P_IVR_DEFAULT_HEIGHT));

        div.open(lstSel.get(0).getAbsolutePath());
        }
      }
    }

  }
View Full Code Here

Examples of hipi.imagebundle.HARImageBundle.open()

  @Override
  public AbstractImageBundle createImageBundleAndOpen(int mode) throws IOException {
    Configuration conf = new Configuration();
    HARImageBundle sib = new HARImageBundle(new Path("/tmp/bundle.har"), conf);
    sib.open(mode, true);
    return sib;
  }
}
View Full Code Here

Examples of hipi.imagebundle.HipiImageBundle.open()

    {
      String temp_path = conf.get("downloader.outpath") + key.get() + ".hib.tmp";
      System.out.println("Temp path: " + temp_path);
     
      HipiImageBundle hib = new HipiImageBundle(new Path(temp_path), conf);
      hib.open(HipiImageBundle.FILE_MODE_WRITE, true);

      String word = value.toString();

      BufferedReader reader = new BufferedReader(new StringReader(word));
      String uri;
View Full Code Here

Examples of hipi.imagebundle.SeqImageBundle.open()

  @Override
  public AbstractImageBundle createImageBundleAndOpen(int mode) throws IOException {
    Configuration conf = new Configuration();
    SeqImageBundle sib = new SeqImageBundle(new Path("/tmp/bundle.sib"), conf);
    sib.open(mode, true);
    return sib;
  }

}
View Full Code Here

Examples of hu.u_szeged.nbo.client.ui.dialog.AboutDialog.open()

    this.setImageDescriptor(ImageDescriptor.createFromImageData(new ImageData("img/nbo16.png")));
  }
 
  public void run() {
    AboutDialog aboutDialog = new AboutDialog(mainWindow);
    aboutDialog.open();
  }
}
View Full Code Here

Examples of ij.plugin.TextReader.open()

    String name = od.getFileName();
    if (name==null)
      return;
    String path = directory + name;
    TextReader tr = new TextReader();
    ImageProcessor ip = tr.open(path);
    if (ip==null)
      return;
    int width = ip.getWidth();
    int height = ip.getHeight();
    if (!((width==1||width==2)&&height>1)) {
View Full Code Here

Examples of ij.plugin.frame.Editor.open()

   }
  
  void edit() {
    if (open("", "Open macro or plugin")) {
      Editor ed = (Editor)IJ.runPlugIn("ij.plugin.frame.Editor", "");
      if (ed!=null) ed.open(dir, name);
    }
  }
 
  void compileAndRun(String path) {
    if (IJ.altKeyDown()) {
View Full Code Here

Examples of info.ata4.unity.asset.AssetFile.open()

        }
    }
   
    protected void processAssetFile(Path file) throws IOException {
        AssetFile asset = new AssetFile();
        asset.open(file);

        setOutputDir(PathUtils.removeExtension(file));
        processAsset(asset);
    }
View Full Code Here

Examples of info.ata4.unity.asset.bundle.AssetBundle.open()

    }

    protected void processAssetBundleFile(Path file) throws IOException {
        // load asset bundle
        AssetBundle ab = new AssetBundle();
        ab.open(file);
       
        // process bundle
        Path outDir = PathUtils.removeExtension(file);
        setOutputDir(outDir);
        processAssetBundle(ab);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.