Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.gjt.sp.jedit.pluginmgr
Class PluginList.Branch  view PluginList.Branch download PluginList.Branch.java

java.lang.Object
  extended byorg.gjt.sp.jedit.pluginmgr.PluginList.Branch
Enclosing class:
PluginList

static class PluginList.Branch
extends java.lang.Object


Field Summary
(package private)  java.lang.String date
           
(package private)  java.util.Vector deps
           
(package private)  java.lang.String download
           
(package private)  int downloadSize
           
(package private)  java.lang.String downloadSource
           
(package private)  int downloadSourceSize
           
(package private)  boolean obsolete
           
(package private)  java.lang.String version
           
 
Constructor Summary
(package private) PluginList.Branch()
           
 
Method Summary
(package private)  boolean canSatisfyDependencies()
           
(package private)  void satisfyDependencies(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

version

java.lang.String version

date

java.lang.String date

downloadSize

int downloadSize

download

java.lang.String download

downloadSourceSize

int downloadSourceSize

downloadSource

java.lang.String downloadSource

obsolete

boolean obsolete

deps

java.util.Vector deps
Constructor Detail

PluginList.Branch

PluginList.Branch()
Method Detail

canSatisfyDependencies

boolean canSatisfyDependencies()

satisfyDependencies

void satisfyDependencies(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()).