com.jeantessier.dependencyfinder.gui
Class DependencyExtractAction

java.lang.Object
  |
  +--javax.swing.AbstractAction
        |
        +--com.jeantessier.dependencyfinder.gui.DependencyExtractAction
All Implemented Interfaces:
javax.swing.Action, java.awt.event.ActionListener, java.lang.Cloneable, java.util.EventListener, LoadListener, java.lang.Runnable, java.io.Serializable

public class DependencyExtractAction
extends javax.swing.AbstractAction
implements java.lang.Runnable, LoadListener

See Also:
Serialized Form

Fields inherited from class javax.swing.AbstractAction
changeSupport, enabled
 
Fields inherited from interface javax.swing.Action
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SHORT_DESCRIPTION, SMALL_ICON
 
Constructor Summary
DependencyExtractAction(DependencyFinder model)
           
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
           
 void BeginClassfile(LoadEvent event)
          The loader is starting on a new .class 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 EndGroup(LoadEvent event)
          The loader finished the group of files.
 void EndSession(LoadEvent event)
           
 void run()
           
 
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, clone, firePropertyChange, getKeys, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DependencyExtractAction

public DependencyExtractAction(DependencyFinder model)
Method Detail

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
Overrides:
actionPerformed in class javax.swing.AbstractAction

run

public void run()
Specified by:
run in interface java.lang.Runnable

BeginSession

public void BeginSession(LoadEvent event)
Specified by:
BeginSession in interface LoadListener

BeginGroup

public void BeginGroup(LoadEvent event)
Description copied from interface: LoadListener

The 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.

Specified by:
BeginGroup in interface LoadListener

BeginClassfile

public void BeginClassfile(LoadEvent event)
Description copied from interface: LoadListener

The 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 attributes is null.

Specified by:
BeginClassfile in interface LoadListener

EndClassfile

public void EndClassfile(LoadEvent event)
Description copied from interface: LoadListener

The 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 attributes is null.

Specified by:
EndClassfile in interface LoadListener

EndGroup

public void EndGroup(LoadEvent event)
Description copied from interface: LoadListener

The 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.

Specified by:
EndGroup in interface LoadListener

EndSession

public void EndSession(LoadEvent event)
Specified by:
EndSession in interface LoadListener