Package org.eclipse.mylyn.tasks.core

Examples of org.eclipse.mylyn.tasks.core.AbstractTask


                Object o = ss.getFirstElement();
                if (o instanceof AbstractTask){                 
               
                  Display.getDefault().asyncExec(new Thread(new Runnable(){
              public void run() {
                AbstractTask t = TasksUiPlugin.getTaskListManager().
                        getTaskList().getActiveTask();
               
                if(t!=null){
                  TwipsePlugin.getDefault().
                    getClient().postStatusUpdate(
                      new Status(t.getSummary()+" - "+t.getUrl()));
                }
              }
                   
                  }));
                }
View Full Code Here

TOP

Related Classes of org.eclipse.mylyn.tasks.core.AbstractTask

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.