|
What this is
Other links
The source code
// $Header: /home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/threads/JMeterVariables.java,v 1.9 2004/02/17 17:27:00 sebb Exp $
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.jmeter.threads;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
/**
* @version $Revision: 1.9 $
*/
public class JMeterVariables
{
private Map variables = new HashMap();
private int iteration = 0;
public JMeterVariables()
{
}
public String getThreadName()
{
return Thread.currentThread().getName();
}
public int getIteration()
{
return iteration;
}
public void incIteration()
{
iteration++;
}
public void initialize()
{
variables.clear();
}
public Object remove(String key)
{
return variables.remove(key);
}
public void put(String key, String value)
{
variables.put(key, value);
}
public void putObject(String key, Object value)
{
variables.put(key, value);
}
public void putAll(Map vars)
{
Iterator iter = vars.keySet().iterator();
while (iter.hasNext())
{
String item = (String) iter.next();
put(item, (String) vars.get(item));
}
}
public void putAll(JMeterVariables vars)
{
putAll(vars.variables);
}
/**
* Returns null values if variable doesn't exist. Users of this must check
* for null.
*/
public String get(String key)
{
return (String) variables.get(key);
}
public Object getObject(String key)
{
return variables.get(key);
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.