//
// DO NOT EDIT THIS FILE, IT HAS BEEN GENERATED USING AndroidAnnotations.
//
package org.voxe.android.common;
import android.app.Activity;
import android.content.Context;
import android.view.View;
public final class Analytics_
extends Analytics
{
private Context context_;
private Analytics_(Context context) {
context_ = context;
init_();
}
public void afterSetContentView_() {
if (!(context_ instanceof Activity)) {
return ;
}
}
/**
* You should check that context is an activity before calling this method
*
*/
public View findViewById(int id) {
Activity activity_ = ((Activity) context_);
return activity_.findViewById(id);
}
@SuppressWarnings("all")
private void init_() {
if (context_ instanceof Activity) {
Activity activity = ((Activity) context_);
}
if (context_ instanceof Activity) {
activity = ((Activity) context_);
}
buildActivityName();
}
public static Analytics_ getInstance_(Context context) {
return new Analytics_(context);
}
public void rebind(Context context) {
context_ = context;
init_();
}
}