Changes between Version 15 and Version 16 of WikiStart


Ignore:
Timestamp:
10/30/18 14:31:55 (6 years ago)
Author:
Wouter Pasman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v15 v16  
    3636</dependencies>
    3737}}}
    38 Example code can be found [https://tracinsy.ewi.tudelft.nl/trac/MentalHealth/browser/MotivateDuringTherapy/src/test/java/tudelft/mentalhealth/motivatepersisting/MotivationalAnswerTest.java here]. Typically you need only this
     38
     39Various example codes are available
     40
     41
     42* You can download a ready-to-run jar (just double click to run; you need to have java installed) [http://artifactory.ewi.tudelft.nl/artifactory/libs-release/tudelft/mentalhealth/motivatepersisting/1.0.0/motivatepersisting-1.0.0-jar-with-dependencies.jar here]
     43* The junit tests for the package [https://tracinsy.ewi.tudelft.nl/trac/MentalHealth/browser/MotivateDuringTherapy/src/test/java/tudelft/mentalhealth/motivatepersisting/MotivationalAnswerTest.java here].
     44* Make your own example using this code snip plus the maven dependencies above
    3945
    4046{{{
     
    4248Situation situation=new Situation(PclTrend.DROPPING, Trust.MEDIUM);
    4349String motivation = new MotivationalAnswer(situation, NL).getText();
    44 
    4550}}}
    4651