Collection attrs =
getNonCacheAttributes(info.getAttributesStructureInfo(),
cacheAttributes);
Iterator itr = attrs.iterator();
while (itr.hasNext()) {
SchemaAttribute attr = (SchemaAttribute) itr.next();
writeComponentAttribute(out, attr, componentPackage, apiClass,
true);
}
out.println(
" RemoteCacheEntry entry = new RemoteCacheEntry(component);");
if (!cacheAttributes.isEmpty()) {
itr = cacheAttributes.iterator();
while (itr.hasNext()) {
SchemaAttribute attr = (SchemaAttribute) itr.next();
writeComponentAttribute(out, attr,
"com.volantis.mcs.runtime.repository.remote",
"RemoteCacheEntry", false);
}