Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ECS.client.jax; //from w w w .j a va 2 s .c o m import java.util.ArrayList; import java.util.List; public class Arguments { protected List<Arguments.Argument> argument; public List<Arguments.Argument> getArgument() { if (argument == null) { argument = new ArrayList<Arguments.Argument>(); } return this.argument; } public static class Argument { protected String name; protected String value; public String getName() { return name; } public void setName(String value) { this.name = value; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } } }