Implemeted action for uploading Wikipedia articles (thanks to D.Wunsch)
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / connect / Parsed.java
diff --git a/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/mediawiki/connect/Parsed.java b/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/mediawiki/connect/Parsed.java
new file mode 100644 (file)
index 0000000..d6f282c
--- /dev/null
@@ -0,0 +1,20 @@
+package net.sourceforge.phpeclipse.wiki.actions.mediawiki.connect;
+//Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
+//http://www.djini.de/software/wikipedia/index.html
+//
+//The modified sources are available under the "Common Public License"
+//with permission from the original author: Daniel Wunsch
+
+public class Parsed {
+  String timestamp;
+
+  String title;
+
+  String body;
+
+  public Parsed(String timeStamp, String title, String body) {
+    this.timestamp = timeStamp;
+    this.title = title;
+    this.body = body;
+  }
+}
\ No newline at end of file