comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/core/App.java @ 76:2fc0b0313dc0

Move to Bullet in Board but has worning
author one
date Fri, 29 Aug 2014 03:16:27 +0900
parents 3a3622cf2eef
children 715a9fbf02fc
comparison
equal deleted inserted replaced
75:26dfa90016d1 76:2fc0b0313dc0
32 Either<Error,JungleTreeEditor> either = editor.putAttribute(path,"key",value); 32 Either<Error,JungleTreeEditor> either = editor.putAttribute(path,"key",value);
33 JungleTreeEditor e = either.b(); 33 JungleTreeEditor e = either.b();
34 e.success(); 34 e.success();
35 35
36 36
37 TreeNode<T> root = tree.getRootNode(); 37 Node<T> root = tree.getRootNode();
38 ByteBuffer v = root.getAttributes().get(key); 38 ByteBuffer v = root.getAttributes().get(key);
39 String str = new String(v.array()); 39 String str = new String(v.array());
40 System.out.println(str); 40 System.out.println(str);
41 } 41 }
42 } 42 }