1) Added missing strings for italic, underline and strike through.
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / connect / Stored.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.connect;
2
3 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
4 //http://www.djini.de/software/wikipedia/index.html
5 //
6 //The modified sources are available under the "Common Public License"
7 //with permission from the original author: Daniel Wunsch
8
9 public class Stored {
10   String actionURL;
11
12   String charSet;
13
14   String title;
15
16   Content content;
17
18   boolean conflict;
19
20   /** contains the reloaded remote Content or the remote conflict Content */
21   public Stored(String actionURL, String charSet, String title, Content content, boolean conflict) {
22     this.actionURL = actionURL;
23     this.charSet = charSet;
24     this.title = title;
25     this.content = content;
26     this.conflict = conflict;
27
28   }
29 }