|
|||||||||
| Home >> All >> org >> gjt >> sp >> jedit >> [ pluginmgr overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.gjt.sp.jedit.pluginmgr
Class PluginList.Plugin

java.lang.Objectorg.gjt.sp.jedit.pluginmgr.PluginList.Plugin
- Enclosing class:
- PluginList
- public static class PluginList.Plugin
- extends java.lang.Object
| Field Summary | |
(package private) java.lang.String |
author
|
(package private) java.util.Vector |
branches
|
(package private) java.lang.String |
description
|
(package private) java.lang.String |
jar
|
(package private) java.lang.String |
name
|
| Constructor Summary | |
PluginList.Plugin()
|
|
| Method Summary | |
(package private) boolean |
canBeInstalled()
|
(package private) void |
checkIfInstalled()
|
(package private) PluginList.Branch |
getCompatibleBranch()
Find the first branch compatible with the running jEdit release. |
(package private) java.lang.String |
getInstalledPath()
|
(package private) java.lang.String |
getInstalledVersion()
|
(package private) void |
install(Roster roster,
java.lang.String installDirectory,
boolean downloadSource)
|
java.lang.String |
toString()
Convert this Object to a human-readable String. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
jar
java.lang.String jar
name
java.lang.String name
description
java.lang.String description
author
java.lang.String author
branches
java.util.Vector branches
| Constructor Detail |
PluginList.Plugin
public PluginList.Plugin()
| Method Detail |
checkIfInstalled
void checkIfInstalled()
getInstalledVersion
java.lang.String getInstalledVersion()
getInstalledPath
java.lang.String getInstalledPath()
getCompatibleBranch
PluginList.Branch getCompatibleBranch()
- Find the first branch compatible with the running jEdit release.
canBeInstalled
boolean canBeInstalled()
install
void install(Roster roster, java.lang.String installDirectory, boolean downloadSource)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object - Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string concatenation with this object. If the result is
null, string concatenation will instead use"null".The default implementation returns
getClass().getName() + "@" + Integer.toHexString(hashCode()).
|
|||||||||
| Home >> All >> org >> gjt >> sp >> jedit >> [ pluginmgr overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
org.gjt.sp.jedit.pluginmgr.PluginList.Plugin