Back to project page TasksReminder.
The source code is released under:
MIT License
If you think the Android project TasksReminder listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// // DO NOT EDIT THIS FILE, IT HAS BEEN GENERATED USING AndroidAnnotations 3.0.1. ///*w ww. j a v a 2 s. co m*/ package com.sampa.tasksreminder; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import org.androidannotations.api.view.HasViews; import org.androidannotations.api.view.OnViewChangedNotifier; public final class TimePickerFragment_ extends TimePickerFragment implements HasViews { private final OnViewChangedNotifier onViewChangedNotifier_ = new OnViewChangedNotifier(); private View contentView_; @Override public void onCreate(Bundle savedInstanceState) { OnViewChangedNotifier previousNotifier = OnViewChangedNotifier.replaceNotifier(onViewChangedNotifier_); init_(savedInstanceState); super.onCreate(savedInstanceState); OnViewChangedNotifier.replaceNotifier(previousNotifier); } public View findViewById(int id) { if (contentView_ == null) { return null; } return contentView_.findViewById(id); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { contentView_ = super.onCreateView(inflater, container, savedInstanceState); return contentView_; } private void init_(Bundle savedInstanceState) { } @Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); onViewChangedNotifier_.notifyViewChanged(this); } public static TimePickerFragment_.FragmentBuilder_ builder() { return new TimePickerFragment_.FragmentBuilder_(); } public static class FragmentBuilder_ { private Bundle args_; private FragmentBuilder_() { args_ = new Bundle(); } public TimePickerFragment build() { TimePickerFragment_ fragment_ = new TimePickerFragment_(); fragment_.setArguments(args_); return fragment_; } } }