Package com.dmissoh.biologic.editor

Examples of com.dmissoh.biologic.editor.SequenceEditorInput


            String description = startSequenceDialog
                .getDescription();

            long now = System.currentTimeMillis();
            SequenceEditorInput input = new SequenceEditorInput(
                false, isLive);
            input.getSequence().setDescription(description);
            input.getSequence().setStartTime(now);
            window.getActivePage().openEditor(input,
                SequenceEditor.class.getName());
          }

        } catch (PartInitException e) {
View Full Code Here


        String log = ((IStructuredSelection) event.getSelection())
            .getFirstElement().toString();
        String logPath = logFolderPath + File.separator + log;
        try {
          Sequence sequence = restoreSequenceFromLog(logPath);
          SequenceEditorInput input = new SequenceEditorInput(true,
              sequence.isLive());
          input.setSequence(sequence);
          PlatformUI.getWorkbench().getActiveWorkbenchWindow()
              .getActivePage().openEditor(input,
                  SequenceEditor.class.getName());
        } catch (PartInitException e) {
          PluginService.getInstance().handleException(e);
View Full Code Here

TOP

Related Classes of com.dmissoh.biologic.editor.SequenceEditorInput

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.