Package org.gvsig.about
Interface AboutManager
public interface AboutManager
- Version:
- $Id$
- Author:
- gvSIG Team
-
Method Summary
Modifier and TypeMethodDescriptionaddDeveloper(String name, URL description, int priority) Add a developer information if not existsaddDeveloper(String name, URL description, int priority, URL icon) addSponsor(String name, URL description, int priority) Add a sponsor information if not existsaddSponsor(String name, URL description, int priority, URL icon) addTranslator(String name, URL description, int priority) Add a translator information if not existsaddTranslator(String name, URL description, int priority, URL icon) getDeveloper(String name) getSponsor(String name) getTranslator(String name) getURLBase(URL fileURL) Returns the base path of a file URL.voidsetProject(String name, URL description, URL icon) void
-
Method Details
-
setProject
-
setProject
-
addDeveloper
Add a developer information if not exists -
addDeveloper
-
addSponsor
Add a sponsor information if not exists -
addSponsor
-
addTranslator
Add a translator information if not exists -
addTranslator
-
getProject
AboutProject getProject() -
getDevelopers
List<AboutDeveloper> getDevelopers() -
getSponsors
List<AboutSponsor> getSponsors() -
getTranslators
List<AboutTranslator> getTranslators() -
getSponsor
-
getDeveloper
-
getTranslator
-
getAboutPanel
JPanel getAboutPanel() -
getURLBase
Returns the base path of a file URL.The method will simply cut the last path of the URL. For example, if the URL is:
http://www.gvsig.org/docs/file.htmlThe returned base string would be:
http://www.gvsig.org/docs/- Parameters:
fileURL- theURLof the file- Returns:
- the base path of a file URL
-