source: trunk/autoquest-plugin-usability2/src/main/java/de/ugoe/cs/autoquest/plugin/usability2/rules/results/IMatch.java @ 1326

Last change on this file since 1326 was 1326, checked in by khartmann, 10 years ago

Moved alexanders code into a new plugin project.
First commit of my experimental code (needs a lot of cleanup).

File size: 233 bytes
Line 
1package de.ugoe.cs.autoquest.plugin.usability2.rules.results;
2
3import java.util.Map;
4
5import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
6
7public interface IMatch {
8    ITask getTask();
9    Map<String, ITask> getLabeledResults();
10}
Note: See TracBrowser for help on using the repository browser.