summaryrefslogtreecommitdiff
path: root/android/sdremote/src/org/libreoffice/impressremote/util/SavedStates.java
blob: 7bc5dad6a9b076adef75dfa06a975c76688a71a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.libreoffice.impressremote.util;

public final class SavedStates {
    private SavedStates() {
    }

    public static final class Keys {
        private Keys() {
        }

        public static final String BLUETOOTH_ENABLED ="BLUETOOTH_ENABLED";
        public static final String CURRENT_VIEW_ID = "CURRENT_VIEW_ID";
        public static final String ERROR_MESSAGE = "ERROR_MESSAGE";
        public static final String MODE = "MODE";
        public static final String PIN = "PIN";
        public static final String PROGRESS_MESSAGE = "PROGRESS_MESSAGE";
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */