Back to project page post-to-friendfeed.
The source code is released under:
Copyright (c) 2010, Larry Myers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: R...
If you think the Android project post-to-friendfeed 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.larrymyers.android.posttoff; /* w w w. j a v a2 s.c o m*/ public class Entry { private String body; private String firstComment; private String lat; private String lng; public String getBody() { return body; } public void setBody(String body) { this.body = body; } public String getFirstComment() { return firstComment; } public void setFirstComment(String firstComment) { this.firstComment = firstComment; } public String getLat() { return lat; } public void setLat(String lat) { this.lat = lat; } public String getLng() { return lng; } public void setLng(String lng) { this.lng = lng; } }