d70105682c2f721e95b3435ebcbbd1c209348951
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / connect / Content.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 Content {
9   String timestamp;
10
11   String body;
12
13   /**
14    * the Content of a Page 
15    * 
16    * @param timestamp
17    * @param body
18    */
19   public Content(String timestamp, String body) {
20     this.timestamp = timestamp;
21     this.body = body;
22   }
23 }