/* * Copyright (C) 2015 Arles. All rights reserved. * <p/> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * <p/> * http://www.apache.org/licenses/LICENSE-2.0 * <p/> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.arles.swissmanager.utils; /** * Class contains key names to extras parameters in Intent.putExtra() method. * Created by Admin on 20.05.2015. */ public class KeyExtra { public static final int DEFAULT_LIST_POSITION_TO_DISPLAY = 0; public static final String KEY_BUFFER_PLAYERS_NAME_LIST = "buffer_players_name"; public static final String KEY_ROUND_LIST_POSITION = "round_list_position"; public static final String KEY_PLAYER_LIST_POSITION = "player_list_position"; }