Android Open Source - AndroidNative---HTTP-Call create Row






From Project

Back to project page AndroidNative---HTTP-Call.

License

The source code is released under:

MIT License

If you think the Android project AndroidNative---HTTP-Call listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.mobmaxime.httprequest;
/*from  w  w w  .j  a v  a  2s.  c o m*/
public class createRow {
  
   private String title;

  public String getTitle() {
    return title;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public createRow(String title) {
    // TODO Auto-generated constructor stub
    this.title = title;
  }
  
  @Override
  public String toString() {
    return title ;
  }

  
}




Java Source Code List

com.mobmaxime.httprequest.LazyAdapter.java
com.mobmaxime.httprequest.MainActivity.java
com.mobmaxime.httprequest.commonDialog.java
com.mobmaxime.httprequest.createRow.java