1 28 29 package com.caucho.amber.hibernate; 30 31 import com.caucho.util.L10N; 32 33 import com.caucho.config.ConfigException; 34 35 import com.caucho.amber.type.EntityType; 36 37 40 public class HibernateBag extends HibernateCollection { 41 private static final L10N L = new L10N(HibernateBag.class); 42 43 HibernateBag(EntityType type) 44 { 45 super(type); 46 47 } 49 50 public void init() 51 throws ConfigException 52 { 53 super.init(); 54 } 55 } 56 | Popular Tags |