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

    import android.support.annotation.CallSuper;
    import android.support.annotation.UiThread;
    import android.view.View;
    import android.widget.ImageView;
    import butterknife.Unbinder;
    import butterknife.internal.Utils;
    import com.example.myapplication.R;
    import com.example.myapplication.myCenter.nav_bar;
    import java.lang.IllegalStateException;
    import java.lang.Override;
    
    public class MineFragment_ViewBinding implements Unbinder {
      private MineFragment target;
    
      @UiThread
      public MineFragment_ViewBinding(MineFragment target, View source) {
        this.target = target;
    
        target.hBack = Utils.findRequiredViewAsType(source, R.id.h_back, "field 'hBack'", ImageView.class);
        target.hHead = Utils.findRequiredViewAsType(source, R.id.h_head, "field 'hHead'", ImageView.class);
        target.sex = Utils.findRequiredViewAsType(source, R.id.sex, "field 'sex'", nav_bar.class);
        target.name = Utils.findRequiredViewAsType(source, R.id.name, "field 'name'", nav_bar.class);
        target.version = Utils.findRequiredViewAsType(source, R.id.version, "field 'version'", nav_bar.class);
        target.password = Utils.findRequiredViewAsType(source, R.id.password, "field 'password'", nav_bar.class);
      }
    
      @Override
      @CallSuper
      public void unbind() {
        MineFragment target = this.target;
        if (target == null) throw new IllegalStateException("Bindings already cleared.");
        this.target = null;
    
        target.hBack = null;
        target.hHead = null;
        target.sex = null;
        target.name = null;
        target.version = null;
        target.password = null;
      }
    }
  • 相关阅读:
    ARP 协议
    天梯赛L1 题解
    DNS域名系统
    LeetCode 三角形最小路径和
    sql注入漏洞的利用
    XSS漏洞防御
    忘记密码功能漏洞挖掘
    sql bypass
    Web环境搭建组合
    常用数据库的总结
  • 原文地址:https://www.cnblogs.com/chenyuchun/p/11066713.html
Copyright © 2011-2022 走看看