Esempio n. 1
0
 /*
  * Use this method to create a bare bones Super Column. This super column does
  * not have any of the Column information.
  */
 private SuperColumn defreezeSuperColumn(DataInputStream dis) throws IOException {
   String name = dis.readUTF();
   boolean delete = dis.readBoolean();
   SuperColumn superColumn = new SuperColumn(name);
   if (delete) superColumn.delete();
   return superColumn;
 }