|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--com.jeantessier.dependencyfinder.VerboseListenerBase
| Constructor Summary | |
VerboseListenerBase()
|
|
| Method Summary | |
void |
beginClassfile(LoadEvent event)
The loader is starting on a new .class
file. |
void |
beginFile(LoadEvent event)
The loader is starting on a new file. |
void |
beginGroup(LoadEvent event)
The loader is starting on a new group of files. |
void |
beginSession(LoadEvent event)
|
void |
endClassfile(LoadEvent event)
The loader is finished loading a .class
file. |
void |
endFile(LoadEvent event)
The loader is finished with a file. |
void |
endGroup(LoadEvent event)
The loader finished the group of files. |
void |
endSession(LoadEvent event)
|
int |
getClassCount()
|
protected GroupData |
getCurrentGroup()
|
protected java.lang.String |
getRatioIndicator()
|
protected java.util.Collection |
getVisitedFiles()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public VerboseListenerBase()
| Method Detail |
public int getClassCount()
protected GroupData getCurrentGroup()
protected java.util.Collection getVisitedFiles()
protected java.lang.String getRatioIndicator()
public void beginSession(LoadEvent event)
beginSession in interface LoadListenerpublic void beginGroup(LoadEvent event)
LoadListenerThe loader is starting on a new group of files.
For example, this can be a new JAR file or a
collection of loose .class files.
The event's filename attribute points to the source or the group of files, such as the JAR file's name or the root directory of the loose files.
The element and classfile attributes are null.
beginGroup in interface LoadListenerpublic void beginFile(LoadEvent event)
LoadListenerThe loader is starting on a new file.
The event's element attribute contains the name of the file being processed.
The event's filename attribute points to the group of files that contains the current file. For example, the JAR file's name or the root directory of loose files.
The classfile attribute is null.
beginFile in interface LoadListenerpublic void beginClassfile(LoadEvent event)
LoadListenerThe loader is starting on a new .class
file.
The event's element attribute contains the name of
the .class file being processed.
The event's filename attribute points to the group of files that contains the current file. For example, the JAR file's name or the root directory of loose files.
The classfile attribute is null.
beginClassfile in interface LoadListenerpublic void endClassfile(LoadEvent event)
LoadListenerThe loader is finished loading a .class
file.
The event's classfile attribute contains the newly
loaded Classfile instance from the .class
file.
The event's filename attribute points to the group of files that contains the current file. For example, the JAR file's name or the root directory of loose files.
The element attribute is null.
endClassfile in interface LoadListenerpublic void endFile(LoadEvent event)
LoadListenerThe loader is finished with a file.
The event's element attribute contains the name of the file being processed.
The event's filename attribute points to the group of files that contains the current file. For example, the JAR file's name or the root directory of loose files.
The event's classfile attribute may contains a newly loaded Classfile instance from the file.
endFile in interface LoadListenerpublic void endGroup(LoadEvent event)
LoadListenerThe loader finished the group of files. For
example, this can be a new JAR file or a
collection of loose .class files.
The event's filename attribute points to the source or the group of files, such as the JAR file's name or the root directory of the loose files.
The element and classfile attributes are null.
endGroup in interface LoadListenerpublic void endSession(LoadEvent event)
endSession in interface LoadListener
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||