public interface AboutManager
Modifier and Type | Method and Description |
---|---|
AboutParticipant |
addDeveloper(String name,
URL description,
int priority)
Add a developer information if not exists
|
AboutParticipant |
addDeveloper(String name,
URL description,
int priority,
URL icon) |
AboutParticipant |
addSponsor(String name,
URL description,
int priority)
Add a sponsor information if not exists
|
AboutParticipant |
addSponsor(String name,
URL description,
int priority,
URL icon) |
AboutParticipant |
addTranslator(String name,
URL description,
int priority)
Add a translator information if not exists
|
AboutParticipant |
addTranslator(String name,
URL description,
int priority,
URL icon) |
JPanel |
getAboutPanel() |
AboutDeveloper |
getDeveloper(String name) |
List<AboutDeveloper> |
getDevelopers() |
AboutProject |
getProject() |
AboutSponsor |
getSponsor(String name) |
List<AboutSponsor> |
getSponsors() |
AboutTranslator |
getTranslator(String name) |
List<AboutTranslator> |
getTranslators() |
String |
getURLBase(URL fileURL)
Returns the base path of a file URL.
|
void |
setProject(String name,
URL description,
URL icon) |
void |
setProject(String name,
URL description,
URL icon,
Map<String,String> vars) |
AboutParticipant addDeveloper(String name, URL description, int priority)
AboutParticipant addDeveloper(String name, URL description, int priority, URL icon)
AboutParticipant addSponsor(String name, URL description, int priority)
AboutParticipant addSponsor(String name, URL description, int priority, URL icon)
AboutParticipant addTranslator(String name, URL description, int priority)
AboutParticipant addTranslator(String name, URL description, int priority, URL icon)
AboutProject getProject()
List<AboutDeveloper> getDevelopers()
List<AboutSponsor> getSponsors()
List<AboutTranslator> getTranslators()
AboutSponsor getSponsor(String name)
AboutDeveloper getDeveloper(String name)
AboutTranslator getTranslator(String name)
JPanel getAboutPanel()
String getURLBase(URL fileURL)
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/fileURL
- the URL
of the file