X-Git-Url: http://git.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/mediawiki/connect/Content.java b/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/mediawiki/connect/Content.java index d701056..d3be0aa 100644 --- a/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/mediawiki/connect/Content.java +++ b/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/mediawiki/connect/Content.java @@ -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