d6f282c0c9f13314b7d7622dd7ebef857dcfbf6b
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / connect / Parsed.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.connect;
2 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
3 //http://www.djini.de/software/wikipedia/index.html
4 //
5 //The modified sources are available under the "Common Public License"
6 //with permission from the original author: Daniel Wunsch
7
8 public class Parsed {
9   String timestamp;
10
11   String title;
12
13   String body;
14
15   public Parsed(String timeStamp, String title, String body) {
16     this.timestamp = timeStamp;
17     this.title = title;
18     this.body = body;
19   }
20 }