Enable word wrapping with preference key editor.wrap.words (false by default)
[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   /**
25    * @return Returns the actionURL.
26    */
27   public String getActionURL() {
28     return actionURL;
29   }
30   /**
31    * @return Returns the charSet.
32    */
33   public String getCharSet() {
34     return charSet;
35   }
36   /**
37    * @return Returns the content.
38    */
39   public Content getContent() {
40     return content;
41   }
42   /**
43    * @return Returns the title.
44    */
45   public String getTitle() {
46     return title;
47   }
48 }