Changeset 1105
- Timestamp:
- 02/20/13 18:57:07 (12 years ago)
- Location:
- trunk/autoquest-core-usability-evaluation-test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-usability-evaluation-test/pom.xml
r1030 r1105 16 16 <tested-artifactId>autoquest-task-trees-integration-tst</tested-artifactId> 17 17 </properties> 18 19 <!-- <repositories>20 21 <repository>22 <id>Unmanaged-Dependency-Repo</id>23 <name>Unmanaged-Dependency-Repo</name>24 <url>file://${project.basedir}/lib</url>25 </repository>26 27 </repositories> -->28 18 29 19 <dependencies> … … 60 50 </dependency> 61 51 62 <dependency>63 <groupId>com.jheatchart</groupId>64 <artifactId>jheatchart</artifactId>65 <version>0.6</version>66 <!-- Workaround for Eclipse -->67 <scope>system</scope>68 <systemPath>${project.basedir}/lib/jheatchart-0.6.jar</systemPath>69 </dependency>70 52 </dependencies> 71 53 -
trunk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/sandboxapp/CreateHeatmapImageFromTaskTreeDemoApp.java
r1040 r1105 20 20 import java.io.IOException; 21 21 22 import org.tc33.jheatchart.HeatChart;22 //import org.tc33.jheatchart.HeatChart; 23 23 24 24 import de.ugoe.cs.autoquest.eventcore.gui.MouseButtonInteraction; … … 103 103 throws IOException 104 104 { 105 HeatChart hc = new HeatChart(data);106 hc.setTitle(mouseInteractions.nodesMatchedFilter().size() + "Mouse interactions");107 // Cautious, took some time!108 // Also you have to run the JVM with extended heapspace, like -Xms512m -Xmx4096m109 hc.saveToFile(new File(heatmapFilename));105 // HeatChart hc = new HeatChart(data); 106 // hc.setTitle(mouseInteractions.nodesMatchedFilter().size() + "Mouse interactions"); 107 // // Cautious, took some time! 108 // // Also you have to run the JVM with extended heapspace, like -Xms512m -Xmx4096m 109 // hc.saveToFile(new File(heatmapFilename)); 110 110 } 111 111
Note: See TracChangeset
for help on using the changeset viewer.