UC Berkeley Group for User Interface Research
Updated November 17, 2000

edu.berkeley.guir.lib.introspect
Class EmptyIntrospectHandler

java.lang.Object
  |
  +--edu.berkeley.guir.lib.introspect.IntrospectHandler
        |
        +--edu.berkeley.guir.lib.introspect.EmptyIntrospectHandler
All Implemented Interfaces:
IntrospectConstants

public class EmptyIntrospectHandler
extends IntrospectHandler

Handler for introspection debugging that does nothing. See Introspect.parseObject(Object, IntrospectHandler).

This software is distributed under the Berkeley Software License.

 Revisions:  - GUIRLib-v1.0-1.0.0, May 16 2000, JH
               Created class
             - GUIRLib-v1.2-1.0.0, Jun 22 2000, JH
               Touched for GUIRLib release
             - GUIRLib-v1.3-1.0.0, Aug 11 2000, JH
               Touched for GUIRLib release
             - GUIRLib-v1.4-1.0.0, Aug 31 2000, JH
               Touched for GUIRLib release
 

Since:
JDK1.3
Version:
GUIRLib-v1.4-1.0.0, Aug 31 2000
Author:
Jason Hong ( jasonh@cs.berkeley.edu )

Fields inherited from interface edu.berkeley.guir.lib.introspect.IntrospectConstants
CL_BOOLEAN, CL_BOOLEAN_ARR, CL_BYTE, CL_BYTE_ARR, CL_CHAR, CL_CHAR_ARR, CL_DOUBLE, CL_DOUBLE_ARR, CL_FLOAT, CL_FLOAT_ARR, CL_INT, CL_INT_ARR, CL_LONG, CL_LONG_ARR, CL_SHORT, CL_SHORT_ARR, CL_STRING, CL_STRINGBUFFER
 
Constructor Summary
EmptyIntrospectHandler()
           
 
Method Summary
 boolean acceptField(int depth, Field f, Object obj)
          Returns false always.
 boolean shouldRecurse(int depth, Field f, Object obj)
          Returns false always.
 
Methods inherited from class edu.berkeley.guir.lib.introspect.IntrospectHandler
getFilter, onArray, onBoolean, onByte, onChar, onDouble, onException, onFloat, onInt, onLong, onNull, onObject, onRoot, onShort, setFilter
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EmptyIntrospectHandler

public EmptyIntrospectHandler()
Method Detail

acceptField

public boolean acceptField(int depth,
                           Field f,
                           Object obj)
Returns false always.
Overrides:
acceptField in class IntrospectHandler
Following copied from class: edu.berkeley.guir.lib.introspect.IntrospectHandler
Returns:
true if no filter, otherwise re-dispatches to filter.

shouldRecurse

public boolean shouldRecurse(int depth,
                             Field f,
                             Object obj)
Returns false always.
Overrides:
shouldRecurse in class IntrospectHandler
Following copied from class: edu.berkeley.guir.lib.introspect.IntrospectHandler
Returns:
true if no filter, otherwise re-dispatches to filter.

Copyright Information