annotate src/main/java/de/mpiwg/itgroup/annotationManager/tests/DrupalTest.java @ 23:a3e324009990

now Mavenified! removed tiny-mce javascript from html frontend. still needs TripleStoreManager project in Eclipse. jsontoken 1.1 has to be built manually.
author casties
date Tue, 03 Apr 2012 13:05:05 +0200
parents src/de/mpiwg/itgroup/annotationManager/tests/DrupalTest.java@b0ef5c860464
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
1 package de.mpiwg.itgroup.annotationManager.tests;
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
2
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
3 import de.mpiwg.itgroup.annotationManager.drupal.AnnotationHandler;
17
b0ef5c860464 updating and deleting annotations works now!
casties
parents: 5
diff changeset
4 import de.mpiwg.itgroup.annotationManager.drupal.UnknowUserException;
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
6 public class DrupalTest {
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
7
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
8 /**
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
9 * @param args
17
b0ef5c860464 updating and deleting annotations works now!
casties
parents: 5
diff changeset
10 * @throws UnknowUserException
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
11 */
17
b0ef5c860464 updating and deleting annotations works now!
casties
parents: 5
diff changeset
12 public static void main(String[] args) throws UnknowUserException {
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
13 // TODO Auto-generated method stub
17
b0ef5c860464 updating and deleting annotations works now!
casties
parents: 5
diff changeset
14 AnnotationHandler ah = new AnnotationHandler(null);
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
15 System.out.println(ah.createAnnotation("title","<strong>content</strong>","dwinter", "weikiki7"));
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
16 }
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
17
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
18 }