From 70a41ec242afe78007cf9d4c020ddcde1c781a06 Mon Sep 17 00:00:00 2001 From: tpylak <tpylak> Date: Tue, 13 Nov 2007 11:12:07 +0000 Subject: [PATCH] material properties DAO refactoring Preparation phase: 1. MaterialDAO should be fetched from AbstractBusinessObject. Currently AbstractBusinessObject just calls IDAOFactory.getMaterialDAO, but in future it can decorate the DAO and fill material properties on the fly. This refactoring required moving some methods from Managers to Business Objects. 2. MaterialDAO should expose FROM and WHERE clauses of its selects - they will be used to fetch only required properties. SVN: 2513 --- .../systemsx/cisd/common/utilities/BeanUtils.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/common/source/java/ch/systemsx/cisd/common/utilities/BeanUtils.java b/common/source/java/ch/systemsx/cisd/common/utilities/BeanUtils.java index 8305acb0db4..579e770bafc 100644 --- a/common/source/java/ch/systemsx/cisd/common/utilities/BeanUtils.java +++ b/common/source/java/ch/systemsx/cisd/common/utilities/BeanUtils.java @@ -186,6 +186,17 @@ public final class BeanUtils return result; } + /** + * Creates a new array of Beans of type <var>clazz</var>. See <code>createBeanList()</code> for parameter + * specification. + */ + public static <T, S> T[] createBeanArray(Class<T> clazz, Iterable<S> source, Converter converter) + { + List<T> list = createBeanList(clazz, source, converter); + final T result[] = createArrayOfType(clazz, list.size()); + return list.toArray(result); + } + /** * Creates a new list of Beans of type <var>clazz</var>. * @@ -197,7 +208,7 @@ public final class BeanUtils * @return The new list filled from <var>sourceList</var> or <code>null</code>, if <var>sourceList</var> is * <code>null</code>. */ - public final static <T, S> List<T> createBeanList(Class<T> clazz, Iterable<S> source, Converter converter) + private final static <T, S> List<T> createBeanList(Class<T> clazz, Iterable<S> source, Converter converter) { assert clazz != null; -- GitLab