zoukankan      html  css  js  c++  java
  • 第一阶段SCRUM冲刺-06

    import android.support.annotation.CallSuper;
    import android.support.annotation.UiThread;
    import android.view.View;
    import android.widget.TextView;
    import butterknife.Unbinder;
    import butterknife.internal.Utils;
    import com.example.myapplication.R;
    import java.lang.IllegalStateException;
    import java.lang.Override;
    
    public class HistoryContentFragment_ViewBinding implements Unbinder {
      private HistoryContentFragment target;
    
      @UiThread
      public HistoryContentFragment_ViewBinding(HistoryContentFragment target, View source) {
        this.target = target;
    
        target.tvContent = Utils.findRequiredViewAsType(source, R.id.tv_content, "field 'tvContent'", TextView.class);
      }
    
      @Override
      @CallSuper
      public void unbind() {
        HistoryContentFragment target = this.target;
        if (target == null) throw new IllegalStateException("Bindings already cleared.");
        this.target = null;
    
        target.tvContent = null;
      }
    }
  • 相关阅读:
    docker安装kafka
    Prometheus警报
    MongoDB介绍
    SpringMvc中几个注解
    无DNS安装VCSA
    互联网本质
    什么是领导力
    58沈剑_一分钟专栏
    以数据库思维理解区块链
    区块链的4个实际应用
  • 原文地址:https://www.cnblogs.com/chenyuchun/p/11066688.html
Copyright © 2011-2022 走看看