32 lines
772 B
Java
32 lines
772 B
Java
package com.ubt.jimu.controller.view;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import androidx.appcompat.widget.AppCompatImageView;
|
|
import com.ubt.jimu.controller.data.widget.ItemBaseData;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ItemBaseView<D extends ItemBaseData> extends AppCompatImageView {
|
|
private D c;
|
|
|
|
public ItemBaseView(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public D getData() {
|
|
return this.c;
|
|
}
|
|
|
|
public void setData(D d) {
|
|
this.c = d;
|
|
}
|
|
|
|
public ItemBaseView(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
|
|
public ItemBaseView(Context context, AttributeSet attributeSet, int i) {
|
|
super(context, attributeSet, i);
|
|
}
|
|
}
|