Created
January 8, 2011 01:03
-
-
Save ekoontz/770399 to your computer and use it in GitHub Desktop.
foo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.LinkedList; | |
public class foo { | |
class NameValuePair { | |
String name; | |
String value; | |
NameValuePair(String _name, String _value) { | |
name = _name; | |
value = _value; | |
} | |
} | |
private LinkedList<NameValuePair> nameValuePairs; | |
public foo() { | |
nameValuePairs = new LinkedList<NameValuePair>(); | |
nameValuePairs.add(new NameValuePair("foo","bar")); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment