it.amattioli.dominate.properties
Class IndexedPropertyAdapter<T>

Show UML class diagram
java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<T>
          extended by it.amattioli.dominate.properties.IndexedPropertyAdapter<T>
Type Parameters:
T -
All Implemented Interfaces:
Iterable<T>, Collection<T>, List<T>

public class IndexedPropertyAdapter<T>
extends AbstractList<T>

An adapter that allow to access an indexed property of a bean as a regular List instance.

The property accessor methods must follow the following naming pattern:

Author:
andrea

Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
IndexedPropertyAdapter(Object bean, String propertyName)
           
 
Method Summary
 void add(int index, T element)
           
 T get(int index)
           
 List<T> getEditingList()
           
 T remove(int index)
           
 int size()
           
 
Methods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, set, subList
 
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray
 

Constructor Detail

IndexedPropertyAdapter

public IndexedPropertyAdapter(Object bean,
                              String propertyName)
Method Detail

get

public T get(int index)
Specified by:
get in interface List<T>
Specified by:
get in class AbstractList<T>

getEditingList

public List<T> getEditingList()

size

public int size()
Specified by:
size in interface Collection<T>
Specified by:
size in interface List<T>
Specified by:
size in class AbstractCollection<T>

add

public void add(int index,
                T element)
Specified by:
add in interface List<T>
Overrides:
add in class AbstractList<T>

remove

public T remove(int index)
Specified by:
remove in interface List<T>
Overrides:
remove in class AbstractList<T>


Copyright © 2011. All Rights Reserved.