Back to project page issue-parser.
The source code is released under:
GNU General Public License
If you think the Android project issue-parser 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 de.dom.drupalit.objects; // ww w. ja va 2s. c o m import java.text.SimpleDateFormat; import android.content.Context; import de.dom.drupalit.R; public class Comment { public String date; public String author; public String comment; public boolean isNew = false; public String localizedCreationString(Context context) { SimpleDateFormat sdf = new SimpleDateFormat(context.getString(R.string.date_format)); return String.format(context.getString(R.string.list_item_date_author_string), this.author, sdf.format(this.date)); } }