1abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell/*
2abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * Copyright (C) 2011 The Android Open Source Project
3abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell *
4abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * Licensed under the Apache License, Version 2.0 (the "License");
5abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * you may not use this file except in compliance with the License.
6abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * You may obtain a copy of the License at
7abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell *
8abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell *      http://www.apache.org/licenses/LICENSE-2.0
9abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell *
10abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * Unless required by applicable law or agreed to in writing, software
11abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * distributed under the License is distributed on an "AS IS" BASIS,
12abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * See the License for the specific language governing permissions and
14abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell * limitations under the License.
15abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell */
16abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell
17abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powellpackage android.support.v13.app;
18abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell
19abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powellimport android.app.Fragment;
20abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell
21abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powellclass FragmentCompatICSMR1 {
2279398eaefea45e61d839cf4e0534f0eafee70a09Adam Powell    public static void setUserVisibleHint(Fragment f, boolean isVisible) {
2379398eaefea45e61d839cf4e0534f0eafee70a09Adam Powell        f.setUserVisibleHint(isVisible);
24abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell    }
25abc968f1eba800c34a4008deb43b015da5d23a5fAdam Powell}
26