comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/core/Attributes.java @ 38:cb9fabaedfd4

added tests and changed testing provider to junit47
author Shoshi TAMAKI
date Mon, 28 Jan 2013 18:52:52 +0900
parents 3dfa0be90a0d
children 5b7e45464bb8
comparison
equal deleted inserted replaced
37:35e327577b58 38:cb9fabaedfd4
1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core; 1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core;
2 2
3 public interface Attributes<K,V> 3 import java.nio.ByteBuffer;
4
5 public interface Attributes
4 { 6 {
5 public V get(K _key); 7 public ByteBuffer get(String _key);
6 } 8 }