Back to project page Android-iTunes-Client-Library.
The source code is released under:
Apache License
If you think the Android project Android-iTunes-Client-Library 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.tassioauad.androiditunesclientlibrary.service.parameter; //from ww w . java2 s .c o m import com.tassioauad.androiditunesclientlibrary.service.parameter.key.ParameterKeyInterface; import com.tassioauad.androiditunesclientlibrary.service.parameter.value.ParameterValueInterface; /** * Created by Tssio on 21/05/2014. */ public interface ParameterInterface extends UrlConvertionInterface { public void setKey(String key); public void setValue(String value); public void setKey(ParameterKeyInterface key); public void setValue(ParameterValueInterface value); public void setKeyValue(ParameterKeyInterface key, ParameterValueInterface value); public String getValue(); public String getKey(); }