Back to project page PrincePolo.
The source code is released under:
GNU General Public License
If you think the Android project PrincePolo 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 se.agile.githubdata; /*from w w w . ja v a2 s . c om*/ public interface Directory extends Comparable<Directory>{ public String getPath(); public void setPath(String path); public String getSha(); public void setSha(String sha); public String getUrl(); public void setUrl(String url); public String getName(); public void setBranchName(String branchName); public String getBranchName(); }