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.Dependency  view PluginList.Dependency download PluginList.Dependency.java

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

static class PluginList.Dependency
extends java.lang.Object


Field Summary
(package private)  java.lang.String from
           
(package private)  PluginList.Plugin plugin
           
(package private)  java.lang.String pluginName
           
(package private)  java.lang.String to
           
(package private)  java.lang.String what
           
 
Constructor Summary
(package private) PluginList.Dependency(java.lang.String what, java.lang.String from, java.lang.String to, java.lang.String pluginName)
           
 
Method Summary
(package private)  boolean canSatisfy()
           
(package private)  boolean isSatisfied()
           
(package private)  void satisfy(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

what

java.lang.String what

from

java.lang.String from

to

java.lang.String to

pluginName

java.lang.String pluginName

plugin

PluginList.Plugin plugin
Constructor Detail

PluginList.Dependency

PluginList.Dependency(java.lang.String what,
                      java.lang.String from,
                      java.lang.String to,
                      java.lang.String pluginName)
Method Detail

isSatisfied

boolean isSatisfied()

canSatisfy

boolean canSatisfy()

satisfy

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