Uses of Class
org.apache.commons.clazz.reflect.common.AccessorMethodParser

Packages that use AccessorMethodParser
org.apache.commons.clazz.reflect.common   
org.apache.commons.clazz.reflect.extended   
 

Uses of AccessorMethodParser in org.apache.commons.clazz.reflect.common
 

Subclasses of AccessorMethodParser in org.apache.commons.clazz.reflect.common
static class ReflectedListPropertyIntrospectorSupport.GetAccessorMethodParser
          Parser for the getFoo(int) method: Return type not void Name starts with "get" followed by capitalized singular form of the property name One integer parameter
static class ReflectedListPropertyIntrospectorSupport.ReadAccessorMethodParser
          Parser for the getFooMap() method: Return type not void Name starts with "get" followed by capitalized property name No parameters We don't check if the parameter is a List here.
static class ReflectedListPropertyIntrospectorSupport.SetAccessorMethodParser
          Parser for the setFoo(index, value) method: Return type void Name starts with "set" followed by capitalized singular form of the property name Two parameters, first integer
static class ReflectedListPropertyIntrospectorSupport.WriteAccessorMethodParser
          Parser for the setFooList(List) method: Return type void Name starts with "set" followed by capitalized property name One parameter We don't check if the parameter is a List here.
static class ReflectedScalarPropertyIntrospector.JBReadAccessorMethodParser
          Parser for the getFoo() method: Return type not void Name starts with "get" followed by capitalized property name.
static class ReflectedScalarPropertyIntrospector.ReadAccessorMethodParser
          Parser for the getFoo() method: Return type not void Name starts with "get" followed by capitalized property name.
static class ReflectedScalarPropertyIntrospector.WriteAccessorMethodParser
          Parser for the setFoo(value) method: Return type void Name starts with "set" followed by capitalized property name One parameter
 

Fields in org.apache.commons.clazz.reflect.common declared as AccessorMethodParser
protected static AccessorMethodParser ReflectedListPropertyIntrospectorSupport.GET_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedScalarPropertyIntrospector.READ_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedListPropertyIntrospectorSupport.READ_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedListPropertyIntrospectorSupport.SET_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedScalarPropertyIntrospector.WRITE_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedListPropertyIntrospectorSupport.WRITE_METHOD_PARSER
           
 

Methods in org.apache.commons.clazz.reflect.common that return AccessorMethodParser
protected  AccessorMethodParser ReflectedListPropertyIntrospectorSupport.getGetAccessMethodParser()
           
protected  AccessorMethodParser ReflectedListPropertyIntrospectorSupport.getReadAccessMethodParser()
           
protected  AccessorMethodParser ReflectedScalarPropertyIntrospector.getReadAccessorMethodParser()
          Override to return an alternative parser for the read accessor method.
protected  AccessorMethodParser ReflectedListPropertyIntrospectorSupport.getSetAccessMethodParser()
           
protected  AccessorMethodParser ReflectedListPropertyIntrospectorSupport.getWriteAccessMethodParser()
           
protected  AccessorMethodParser ReflectedScalarPropertyIntrospector.getWriteAccessorMethodParser()
           
 

Uses of AccessorMethodParser in org.apache.commons.clazz.reflect.extended
 

Subclasses of AccessorMethodParser in org.apache.commons.clazz.reflect.extended
static class ExtendedReflectedListPropertyIntrospector.AddAccessorMethodParser
          Parser for the addFoo(value) method: Return type void Name starts with "add" followed by capitalized singular form of the property name One parameter
static class ExtendedReflectedListPropertyIntrospector.AddIndexedAccessorMethodParser
          Parser for the addFoo(index, value) method: Return type void Name starts with "add" followed by capitalized singular form of the property name Two parameters, first integer
static class ExtendedReflectedListPropertyIntrospector.RemoveAccessorMethodParser
          Parser for the removeFoo(value) method: Name starts with "remove" followed by capitalized singular form of the property name One parameter
static class ExtendedReflectedListPropertyIntrospector.RemoveIndexedAccessorMethodParser
          Parser for the removeFoo(index) method: Name starts with "remove" followed by capitalized singular form of the property name One integer parameter
static class ExtendedReflectedListPropertyIntrospector.SizeAccessorMethodParser
          Parser for the getFooCount() method: Returns integer Name starts with "get" followed by capitalized singular form of the property name, followed by "Count" or "Size" No parameters
static class ReflectedMappedPropertyIntrospector.GetAccessorMethodParser
          Parser for the getFoo(key) method: Return type not void Name starts with "get" followed by capitalized singular form of the property name One parameter
static class ReflectedMappedPropertyIntrospector.KeySetAccessorMethodParser
          Parser for the getFooKeys() method: Returns integer Name starts with "get" followed by capitalized singular form of the property name, followed by "Keys" or "KeySet" No parameters
static class ReflectedMappedPropertyIntrospector.PutAccessorMethodParser
          Parser for the setFoo(key, value) method: Return type void Name starts with "set" followed by capitalized singular form of the property name Two parameters
static class ReflectedMappedPropertyIntrospector.ReadAccessorMethodParser
          Parser for the getFooMap() method: Return type not void Name starts with "get" followed by capitalized property name No parameters We don't check if the parameter is a Map here.
static class ReflectedMappedPropertyIntrospector.RemoveAccessorMethodParser
          Parser for the removeFoo(key) method: Name starts with "remove" followed by capitalized singular form of the property name One parameter
static class ReflectedMappedPropertyIntrospector.WriteAccessorMethodParser
          Parser for the setFooMap(Map) method: Return type void Name starts with "set" followed by capitalized property name One parameter We don't check if the parameter is a Map here.
 

Fields in org.apache.commons.clazz.reflect.extended declared as AccessorMethodParser
protected static AccessorMethodParser ExtendedReflectedListPropertyIntrospector.ADD_INDEXED_METHOD_PARSER
           
protected static AccessorMethodParser ExtendedReflectedListPropertyIntrospector.ADD_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedMappedPropertyIntrospector.GET_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedMappedPropertyIntrospector.KEY_SET_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedMappedPropertyIntrospector.PUT_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedMappedPropertyIntrospector.READ_METHOD_PARSER
           
protected static AccessorMethodParser ExtendedReflectedListPropertyIntrospector.REMOVE_INDEXED_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedMappedPropertyIntrospector.REMOVE_METHOD_PARSER
           
protected static AccessorMethodParser ExtendedReflectedListPropertyIntrospector.REMOVE_METHOD_PARSER
           
protected static AccessorMethodParser ExtendedReflectedListPropertyIntrospector.SIZE_METHOD_PARSER
           
protected static AccessorMethodParser ReflectedMappedPropertyIntrospector.WRITE_METHOD_PARSER
           
 

Methods in org.apache.commons.clazz.reflect.extended that return AccessorMethodParser
protected  AccessorMethodParser ExtendedReflectedListPropertyIntrospector.getAddAccessorMethodParser()
           
protected  AccessorMethodParser ExtendedReflectedListPropertyIntrospector.getAddIndexedAccessorMethodParser()
           
protected  AccessorMethodParser ReflectedMappedPropertyIntrospector.getGetAccessorMethodParser()
           
protected  AccessorMethodParser ReflectedMappedPropertyIntrospector.getKeySetAccessorMethodParser()
           
protected  AccessorMethodParser ReflectedMappedPropertyIntrospector.getPutAccessorMethodParser()
           
protected  AccessorMethodParser ReflectedMappedPropertyIntrospector.getReadAccessorMethodParser()
           
protected  AccessorMethodParser ReflectedMappedPropertyIntrospector.getRemoveAccessorMethodParser()
           
protected  AccessorMethodParser ExtendedReflectedListPropertyIntrospector.getRemoveAccessorMethodParser()
           
protected  AccessorMethodParser ExtendedReflectedListPropertyIntrospector.getRemoveIndexedAccessorMethodParser()
           
protected  AccessorMethodParser ExtendedReflectedListPropertyIntrospector.getSizeAccessorMethodParser()
           
protected  AccessorMethodParser ReflectedMappedPropertyIntrospector.getWriteAccessorMethodParser()
           
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.