blob: 22e438addc4c5d3ed8c79cb2d82318f01702fae7 [file] [log] [blame]
Steve McKayf68210e2015-11-03 15:23:16 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.documentsui;
18
19import static com.android.documentsui.State.MODE_UNKNOWN;
20import static com.android.documentsui.State.SORT_ORDER_UNKNOWN;
21
22import android.content.ContentProviderClient;
23import android.database.Cursor;
24
25import libcore.io.IoUtils;
26
27public class DirectoryResult implements AutoCloseable {
28 ContentProviderClient client;
29 public Cursor cursor;
30 public Exception exception;
31
Steve McKayf68210e2015-11-03 15:23:16 -080032 public int sortOrder = SORT_ORDER_UNKNOWN;
33
34 @Override
35 public void close() {
36 IoUtils.closeQuietly(cursor);
37 ContentProviderClient.releaseQuietly(client);
38 cursor = null;
39 client = null;
40 }
41}