コード例 #1
0
 public CassFolderHandler(AstyanaxRepoConnection cass, String standardCf) {
   this.cass = cass;
   this.cf = standardCf + FOLDERPOSTFIX;
   try {
     cass.ensureStandardCF(cf);
   } catch (Exception e) {
     // Hmm... the first call to a folder handler will fail and throw a
     // RaptureException there.
     e.printStackTrace();
   }
 }