ReplyButton.java :  » UnTagged » snaio » edu » uta » cse » snaio » core » model » post » Android Open Source

Android Open Source » UnTagged » snaio 
snaio » edu » uta » cse » snaio » core » model » post » ReplyButton.java
/*
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
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.