ConvertStore

来源:互联网 发布:c语言buffer 编辑:程序博客网 时间:2024/05/19 17:03
package com.test.myplugin;


import java.util.HashMap;


import org.eclipse.jdt.core.IType;


public class ConvertStore {
private static HashMap<String, IType> hashMap = new HashMap<String, IType>();

public static void setValue(String key, IType value){
hashMap.put(key, value);
}

public static IType getValue(String key){
return hashMap.get(key);
}
}
0 0
原创粉丝点击