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 Stored { String actionURL; String charSet; String title; Content content; boolean conflict; /** contains the reloaded remote Content or the remote conflict Content */ public Stored(String actionURL, String charSet, String title, Content content, boolean conflict) { this.actionURL = actionURL; this.charSet = charSet; this.title = title; this.content = content; this.conflict = conflict; } }