1c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank/*
2c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * Copyright (C) 2012 Google Inc.
3c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * Licensed to The Android Open Source Project.
4c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank *
5c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * Licensed under the Apache License, Version 2.0 (the "License");
6c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * you may not use this file except in compliance with the License.
7c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * You may obtain a copy of the License at
8c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank *
9c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank *      http://www.apache.org/licenses/LICENSE-2.0
10c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank *
11c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * Unless required by applicable law or agreed to in writing, software
12c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * distributed under the License is distributed on an "AS IS" BASIS,
13c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * See the License for the specific language governing permissions and
15c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank * limitations under the License.
16c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank */
17c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank
18c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blankpackage com.android.email.provider;
19c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank
20c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blankimport com.android.mail.providers.Folder;
21c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank
22c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blankpublic interface FolderPickerCallback {
23c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank    public void select(Folder folder);
24266064bcc7c6ed7318a284d59bb83d53edbf1921Marc Blank    public void cancel();
25c6089bc01f2ae49fb11904a4b4f222811358254fMarc Blank}
26