/*
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 SSendButton.
*
* @author Tuan Nguyen - tnguyen@mavs.uta.edu
*/
public class SSendButton extends Button {
/**
* Instantiates a new s send button.
*
* @param context the context
*/
public SSendButton(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
}
|