ElementId myBeanId = elementPool.getIdFor(classes[i]);
/**
* ...which we then use to create a set of AnnoBeans...
*/
AnnoBeanSet annos = storedOverrides.findOrCreateStoredAnnoSetFor(myBeanId);
/**
* ...in which we create an AnnoBean for the class' DeploymentInfo
* annotation. The StoredAnnoOverrider works by simply handing this
* object back to the AnnoViewer later on,
*/
DeploymentInfoAnnoBean annoBean = (DeploymentInfoAnnoBean)
annos.findOrCreateBeanFor(DeploymentInfo.class);
/**
* so we can take this opporunity to go ahead and modify the cache size.
*/
annoBean.set_cacheSize(newCacheSize);