|
Friki example source code file (PolicyHelper.java)
The Friki PolicyHelper.java source code
package tests;
import java.util.HashMap;
import java.util.Map;
public class PolicyHelper
{
public static Map makeMap(String[] terms)
{
Map ret = new HashMap();
for (int i = 0; i < terms.length; ++i)
{
String term = terms[i];
int pos = term.indexOf("=");
if (pos > 0)
{
String name = term.substring(0,pos);
String value = term.substring(pos+1);
ret.put(name, value);
}
}
return ret;
}
}
Other Friki examples (source code examples)Here is a short list of links related to this Friki PolicyHelper.java source code file: |
| ... 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.