package net.sourceforge.phpeclipse.wiki.actions.mediawiki.config; //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 interface IWikipedia { /** * @return Returns the default actionUrl. */ public String getActionUrl(); /** * @return Returns the actionPath. */ public String getActionPath(); /** * @return Returns the actionPath2. */ public String getActionPath2(); /** * @return Returns the baseURL. */ public String getBaseURL(); /** * @return Returns the charSet. */ public String getCharSet(); /** * @return Returns the loginNoUser. */ public String getLoginNoUser(); /** * @return Returns the loginSuccess. */ public String getLoginSuccess(); /** * @return Returns the loginTitle. */ public String getLoginTitle(); /** * @return Returns the loginWrongPw. */ public String getLoginWrongPw(); /** * @return Returns the logoutSuccess. */ public String getLogoutSuccess(); /** * @return Returns the logoutTitle. */ public String getLogoutTitle(); /** * @return Returns the metaNs. */ public String getMetaNs(); /** * @return Returns the nameSpaces. */ public String[] getNameSpaces(); /** * @return Returns the readPath. */ public String getReadPath(); /** * @return Returns the specialNs. */ public String getSpecialNs(); /** * @return Returns the uploadNoLogin. */ public String getUploadNoLogin(); /** * @return Returns the uploadSuccess. */ public String getUploadSuccess(); /** * @return Returns the uploadTitle. */ public String getUploadTitle(); }