coins.aflow.util
Interface Analyzer

All Known Implementing Classes:
AnalAdapter

public interface Analyzer

Title: Analyzer

Description: Interface for analyzer classes. Class that implements this interface supports the automatic analysis mechanism.

See Also:
SelfCollectingResults

Method Summary
 void find()
          Performs the analysis.
 void find(java.lang.Object pObj)
          Performs the analysis with the given argument.
 void find(java.lang.Object pObj, java.lang.Object pObj0)
          Performs the analysis with the given arguments.
 void find(java.lang.Object pObj, java.lang.Object pObj0, SelfCollectingResults pResults)
          Performs the analysis with the given arguments.
 void find(java.lang.Object pObject, SelfCollectingResults pResults)
          Performs the analysis with given argument.
 void find(SelfCollectingResults pResults)
          Performs the analysis.
 

Method Detail

find

public void find(SelfCollectingResults pResults)
Performs the analysis.


find

public void find(java.lang.Object pObject,
                 SelfCollectingResults pResults)
Performs the analysis with given argument.

Parameters:
pObject - argument object.

find

public void find(java.lang.Object pObj,
                 java.lang.Object pObj0,
                 SelfCollectingResults pResults)
Performs the analysis with the given arguments.


find

public void find()
Performs the analysis.


find

public void find(java.lang.Object pObj)
Performs the analysis with the given argument.


find

public void find(java.lang.Object pObj,
                 java.lang.Object pObj0)
Performs the analysis with the given arguments.