Here you can find the source of putDataInToMap(String className, String MethodName)
private static void putDataInToMap(String className, String MethodName)
//package com.java2s; /**// www . jav a 2 s .c o m * @file DexterUtilHelper.java * @brief DexterUtilHelper class source file * @author adarsh.t * * Copyright 2014 by Samsung Electronics, Inc. * All rights reserved. * * Project Description : * This software is the confidential and proprietary information * of Samsung Electronics, Inc. ("Confidential Information"). You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with Samsung Electronics. */ import java.util.HashMap; import java.util.Map; public class Main { private static Map<String, String> mapModuleName = new HashMap<String, String>(); private static void putDataInToMap(String className, String MethodName) { mapModuleName.clear(); mapModuleName.put("className", className); mapModuleName.put("methodName", MethodName); } }