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 Loaded { String actionURL; String charSet; String title; Content content; /** contains loaded remote content */ Loaded(String actionURL, String charSet, String title, Content content) { this.actionURL = charSet; this.title = title; this.content = content; } /** * @return Returns the actionURL. */ public String getActionURL() { return actionURL; } /** * @return Returns the charSet. */ public String getCharSet() { return charSet; } /** * @return Returns the content. */ public Content getContent() { return content; } /** * @return Returns the title. */ public String getTitle() { return title; } }