blob: 1f1dd5832d558eac0a879cd81458111878bf8aea [file] [log] [blame]
Craig Mautnerb1fd65c02013-02-05 13:34:57 -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
Craig Mautner05d6272ba2013-02-11 09:39:27 -080017package com.android.server.wm;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080018
19import android.view.IApplicationToken;
20
21import java.util.ArrayList;
22
23public class TaskGroup {
24 public int taskId = -1;
25 public ArrayList<IApplicationToken> tokens = new ArrayList<IApplicationToken>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -080026
27 @Override
28 public String toString() {
29 return "id=" + taskId + " tokens=" + tokens;
30 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080031}