blob: 649aad4ce88ce4d16f6af175f23c9beef33baf77 [file] [log] [blame]
/*
* Copyright (c) SSI Schaefer IT Solutions
*/
package org.eclipse.tea.samples.tasks;
import org.eclipse.e4.core.di.annotations.Execute;
public class SampleCalculateState {
public static String myState = null;
@Execute
public void run() {
myState = "This is some calculated state";
}
}