1) Added missing strings for italic, underline and strike through.
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / config / IWikipedia.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.config;
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 interface IWikipedia {
9
10   /**
11    * @return Returns the default actionUrl.
12    */
13   public String getActionUrl();
14   /** 
15    * @return Returns the actionPath.
16    */
17   public String getActionPath();
18   /**
19    * @return Returns the actionPath2.
20    */
21   public String getActionPath2();
22   /**
23    * @return Returns the baseURL.
24    */
25   public String getBaseURL();
26   /**
27    * @return Returns the charSet.
28    */
29   public String getCharSet();
30   /**
31    * @return Returns the loginNoUser.
32    */
33   public String getLoginNoUser();
34   /**
35    * @return Returns the loginSuccess.
36    */
37   public String getLoginSuccess();
38   /**
39    * @return Returns the loginTitle.
40    */
41   public String getLoginTitle();
42   /**
43    * @return Returns the loginWrongPw.
44    */
45   public String getLoginWrongPw();
46   /**
47    * @return Returns the logoutSuccess.
48    */
49   public String getLogoutSuccess();
50   /**
51    * @return Returns the logoutTitle.
52    */
53   public String getLogoutTitle();
54   /**
55    * @return Returns the metaNs.
56    */
57   public String getMetaNs();
58   /**
59    * @return Returns the nameSpaces.
60    */
61   public String[] getNameSpaces();
62   /**
63    * @return Returns the readPath.
64    */
65   public String getReadPath();
66   /**
67    * @return Returns the specialNs.
68    */
69   public String getSpecialNs();
70   /**
71    * @return Returns the uploadNoLogin.
72    */
73   public String getUploadNoLogin();
74   /**
75    * @return Returns the uploadSuccess.
76    */
77   public String getUploadSuccess();
78   /**
79    * @return Returns the uploadTitle.
80    */
81   public String getUploadTitle();
82 }