Ignore:
Timestamp:
02/20/13 18:57:07 (11 years ago)
Author:
adeicke
Message:

Removed dependency to jheartchart library.

Location:
trunk/autoquest-core-usability-evaluation-test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-usability-evaluation-test/pom.xml

    r1030 r1105  
    1616                <tested-artifactId>autoquest-task-trees-integration-tst</tested-artifactId> 
    1717        </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> --> 
    2818 
    2919        <dependencies> 
     
    6050                </dependency> 
    6151 
    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> 
    7052        </dependencies> 
    7153 
  • trunk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/sandboxapp/CreateHeatmapImageFromTaskTreeDemoApp.java

    r1040 r1105  
    2020import java.io.IOException; 
    2121 
    22 import org.tc33.jheatchart.HeatChart; 
     22//import org.tc33.jheatchart.HeatChart; 
    2323 
    2424import de.ugoe.cs.autoquest.eventcore.gui.MouseButtonInteraction; 
     
    103103        throws IOException 
    104104    { 
    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)); 
     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)); 
    110110    } 
    111111 
Note: See TracChangeset for help on using the changeset viewer.