150151152153154155156157158
} public PCLCollection touchPCLCollection() throws IOException { if(pclCollection==null){ pclCollection=new PCLCollection(this,getClassRootDirectory(),getConfig().getClassLoader(),classLoaderMaxElements); } return pclCollection; }
471472473474475476477478479480481482
return count; } private static int shrink(Mapping mapping, boolean force) { try { PCLCollection pcl = ((MappingImpl)mapping).getPCLCollection(); if(pcl!=null)return pcl.shrink(force); } catch (Throwable t) { t.printStackTrace(); } return 0;
511512513514515516517518
} return count; } private static long _count(Mapping mapping) { PCLCollection pcl = ((MappingImpl)mapping).getPCLCollection(); return pcl==null?0:pcl.count(); }