Package omschaub.todo

Examples of omschaub.todo.EpiMaker


            
             name = items[0].getText();
             //lines[2] = items[1].getText();

            
             epiMaker = new EpiMaker();
             lines = epiMaker.commentOpen(pluginInterface, name);
 
            
             inLineEdit(editor);
             //openForEdit(lines, false);
View Full Code Here


        return;
      }
      if (lines[2] == null){
        lines[2] = "Nothing Entered ";
      }
      epiMaker = new EpiMaker();
      epiMaker.commentWriter(pluginInterface, lines);
      shell.close() ;
      shell.dispose();
      readEpifile();
     
View Full Code Here

        }
        if (escPressed == 1){
          lines[1] = item.getText(0);
          lines[2] = text.getText();
          //System.out.println(lines[1] + " | " + lines[2]);
          epiMaker = new EpiMaker();
          epiMaker.commentWriter(pluginInterface, lines);
            Control oldEditor = editor.getEditor();
          if (oldEditor != null)
          {
            oldEditor.dispose();
View Full Code Here

}

public void deleteFromList(String nameToDie, String episode){
  //System.out.println(nameToDie + episode);
 
  epiMaker = new EpiMaker();
  epiMaker.commentDelete( pluginInterface, nameToDie);
  readEpifile();
}
View Full Code Here

TOP

Related Classes of omschaub.todo.EpiMaker

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.