zoukankan      html  css  js  c++  java
  • 第一阶段冲刺第七天

    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;
      }
    }
  • 相关阅读:
    列式数据库
    Subway POJ
    操作系统知识汇总
    Linux工具指南
    常用数据结构
    bzoj1257: [CQOI2007]余数之和 整除分块
    HDU
    hdu1693 Eat the Trees 插头dp
    HDU
    poj2411 轮廓线dp裸题
  • 原文地址:https://www.cnblogs.com/zhang188660586/p/11061925.html
Copyright © 2011-2022 走看看