1 54 package org.logicalcobwebs.cglib.core; 55 56 public class ClassesKey { 57 private static final Key FACTORY = (Key)KeyFactory.create(Key.class, KeyFactory.OBJECT_BY_CLASS); 58 59 interface Key { 60 Object newInstance(Object [] array); 61 } 62 63 private ClassesKey() { 64 } 65 66 public static Object create(Object [] array) { 67 return FACTORY.newInstance(array); 68 } 69 } 70 | Popular Tags |