org.pfsw.extender
Interface MixinProcessor


public interface MixinProcessor

A callback handler for mixin objects.


Method Summary
 boolean process(java.lang.Class<?> type, java.lang.Object mixin)
          Will be called for a single mixin object.
 

Method Detail

process

boolean process(java.lang.Class<?> type,
                java.lang.Object mixin)
Will be called for a single mixin object.

Parameters:
type - The type under which the given mixin is registered.
mixin - The mixin object to be processed.
Returns:
true if processing should continue, otherwise false.