Enable word wrapping with preference key editor.wrap.words (false by default)
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / connect / Content.java
index d701056..d3be0aa 100644 (file)
@@ -7,12 +7,10 @@ package net.sourceforge.phpeclipse.wiki.actions.mediawiki.connect;
 
 public class Content {
   String timestamp;
-
   String body;
 
   /**
    * the Content of a Page 
-   * 
    * @param timestamp
    * @param body
    */
@@ -20,4 +18,16 @@ public class Content {
     this.timestamp = timestamp;
     this.body = body;
   }
+  /**
+   * @return Returns the body.
+   */
+  public String getBody() {
+    return body;
+  }
+  /**
+   * @return Returns the timestamp.
+   */
+  public String getTimestamp() {
+    return timestamp;
+  }
 }
\ No newline at end of file