List of usage examples for org.eclipse.jface.operation IRunnableWithProgress interface-usage
From source file com.astra.ses.spell.gui.model.jobs.GetLogFileJob.java
public class GetLogFileJob implements IRunnableWithProgress { public CommandResult result; public LogFile logFile; protected String m_instanceId; public GetLogFileJob(String instanceId) {
From source file com.astra.ses.spell.gui.model.jobs.GetProcPropertiesJob.java
public class GetProcPropertiesJob implements IRunnableWithProgress { public CommandResult result; private Map<ProcProperties, String> m_properties; protected String m_instanceId; public GetProcPropertiesJob(String instanceId) {
From source file com.astra.ses.spell.gui.model.jobs.KillAllJob.java
public class KillAllJob implements IRunnableWithProgress { public CommandResult result; public String message; public KillAllJob() { result = CommandResult.NO_EFFECT;
From source file com.astra.ses.spell.gui.model.jobs.ReleaseAllJob.java
public class ReleaseAllJob implements IRunnableWithProgress { public CommandResult result; public String message; public ReleaseAllJob() { result = CommandResult.NO_EFFECT;
From source file com.astra.ses.spell.gui.model.jobs.SaveAsRunFileJob.java
public class SaveAsRunFileJob implements IRunnableWithProgress { public CommandResult result; private List<AsRunFile> m_asrunFiles; private String m_destination; public SaveAsRunFileJob(String directory, AsRunFile file) {
From source file com.astra.ses.spell.gui.model.jobs.StartContextJob.java
public class StartContextJob implements IRunnableWithProgress { public CommandResult result; @Override public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
From source file com.astra.ses.spell.gui.model.jobs.StopContextJob.java
public class StopContextJob implements IRunnableWithProgress { public CommandResult result; @Override public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
From source file com.astra.ses.spell.gui.model.jobs.UpdateDataContainerJob.java
public class UpdateDataContainerJob implements IRunnableWithProgress { public CommandResult result; public String error; protected DataContainer m_container; protected boolean m_mergeNew; protected String m_instanceId;
From source file com.astra.ses.spell.gui.presentation.text.export.ExportTextJob.java
public class ExportTextJob implements IRunnableWithProgress { public CommandResult result; private IProcedure m_proc; private String m_destinationFileName; private String[] m_displayLines;
From source file com.astra.ses.spell.gui.print.commands.PrintJob.java
public class PrintJob implements IRunnableWithProgress { private Printer m_printer; private PrinterData m_printerData; private IProcedure m_model; private AsRunFile m_asrun; private LogFile m_log;