Ejemplo n.º 1
0
 /**
  * Returns an estimate of the memory size of this object, in bytes.
  *
  * @return the estimated number of bytes of this object
  */
 @Override
 public int size() {
   int size = 8 + (elements.size() * 8);
   for (TemplateElement element : elements) size += element.size();
   return size;
 }