MCPcopy Index your code
hub / github.com/bit4woo/ReSign / getPara

Method getPara

src/custom/CGUI.java:636–645  ·  view source on GitHub ↗
(IRequestInfo analyzeRequest)

Source from the content-addressed store, hash-verified

634
635
636 public LinkedHashMap<String, String> getPara(IRequestInfo analyzeRequest){
637 List<IParameter> paras = analyzeRequest.getParameters();
638 LinkedHashMap<String,String> paraMap = getParaFromTable();//�ӱ����л�ȡ�����Map��ֻҪ���¾ͺ�
639 for (IParameter para:paras){
640 if (paraMap.containsKey(para.getName())){
641 paraMap.put(para.getName(), para.getValue());
642 }
643 }
644 return paraMap ;
645 }
646
647 public LinkedHashMap<String, String> getParaFromTable(){
648 LinkedHashMap<String, String> tableParas = new LinkedHashMap<String, String>();

Callers

nothing calls this directly

Calls 4

getParaFromTableMethod · 0.95
getParametersMethod · 0.65
getNameMethod · 0.65
getValueMethod · 0.65

Tested by

no test coverage detected