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