net.sf.mmm.util.pojo.descriptor.impl.accessor
Class PojoPropertyAccessorSizeBuilder

java.lang.Object
  extended by net.sf.mmm.util.pojo.descriptor.base.accessor.AbstractPojoPropertyAccessorBuilder<PojoPropertyAccessorNonArg>
      extended by net.sf.mmm.util.pojo.descriptor.impl.accessor.PojoPropertyAccessorSizeBuilder
All Implemented Interfaces:
PojoPropertyAccessorBuilder<PojoPropertyAccessorNonArg>, PojoPropertyAccessorNonArgBuilder

@Singleton
@Named
public class PojoPropertyAccessorSizeBuilder
extends AbstractPojoPropertyAccessorBuilder<PojoPropertyAccessorNonArg>
implements PojoPropertyAccessorNonArgBuilder

This is the implementation of the PojoPropertyAccessorNonArgBuilder interface for getter-access.

Since:
1.1.0
Author:
Joerg Hohwiller (hohwille at users.sourceforge.net)

Field Summary
private static String[] METHOD_PREFIXES
          the method name prefixes for getter.
private static String[] METHOD_SUFFIXES
          the method name suffixes for size getter.
 
Constructor Summary
PojoPropertyAccessorSizeBuilder()
          The constructor.
 
Method Summary
 PojoPropertyAccessorNonArg create(Field field, PojoDescriptor<?> descriptor, PojoDescriptorDependencies dependencies)
          This method creates the accessor for the given field if that field is suitable for this builder (e.g.
 PojoPropertyAccessorNonArg create(Method method, PojoDescriptor<?> descriptor, PojoDescriptorDependencies dependencies)
          This method creates the accessor for the given method if that method is suitable for this builder (e.g.
 PojoPropertyAccessorNonArgMode getMode()
          This method gets the mode of this builder.
 
Methods inherited from class net.sf.mmm.util.pojo.descriptor.base.accessor.AbstractPojoPropertyAccessorBuilder
getPropertyName, getPropertyName, getPropertyName, isBooleanType, isIntegerType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

METHOD_PREFIXES

private static final String[] METHOD_PREFIXES
the method name prefixes for getter.


METHOD_SUFFIXES

private static final String[] METHOD_SUFFIXES
the method name suffixes for size getter.

Constructor Detail

PojoPropertyAccessorSizeBuilder

public PojoPropertyAccessorSizeBuilder()
The constructor.

Method Detail

create

public PojoPropertyAccessorNonArg create(Method method,
                                         PojoDescriptor<?> descriptor,
                                         PojoDescriptorDependencies dependencies)
This method creates the accessor for the given method if that method is suitable for this builder (e.g. starts with "set").

Specified by:
create in interface PojoPropertyAccessorBuilder<PojoPropertyAccessorNonArg>
Parameters:
method - the method to access.
descriptor - is the descriptor of the Pojo having the given method.
dependencies - are the PojoDescriptorDependencies with injected helper components.
Returns:
the accessor for the given method or null if the method is NOT suitable for this builder.

create

public PojoPropertyAccessorNonArg create(Field field,
                                         PojoDescriptor<?> descriptor,
                                         PojoDescriptorDependencies dependencies)
This method creates the accessor for the given field if that field is suitable for this builder (e.g. contains a container type).

Specified by:
create in interface PojoPropertyAccessorBuilder<PojoPropertyAccessorNonArg>
Parameters:
field - is the field.
descriptor - is the descriptor of the Pojo having the given field.
dependencies - are the PojoDescriptorDependencies with injected helper components.
Returns:
the accessor for the given field or null if the field is NOT suitable for this builder.

getMode

public PojoPropertyAccessorNonArgMode getMode()
This method gets the mode of this builder.

Specified by:
getMode in interface PojoPropertyAccessorBuilder<PojoPropertyAccessorNonArg>
Specified by:
getMode in interface PojoPropertyAccessorNonArgBuilder
Returns:
the mode.


Copyright © 2001-2010 mmm-Team. All Rights Reserved.