/*
Copyright (c) 2010, SNAIO team
All rights reserved.
*/
package edu.uta.cse.snaio.core.model.post;
import android.content.Context;
import android.widget.Button;
/**
* The Class ReplyButton.
*
* @author Tuan Nguyen - tnguyen@mavs.uta.edu
*/
public class ReplyButton extends Button {
/**
* Instantiates a new reply button.
*
* @param context the context
*/
public ReplyButton(Context context) {
super(context);
setText(">");
// TODO Auto-generated constructor stub
}
}
|