1eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio/*
2eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * Copyright (C) 2011 The Android Open Source Project
3eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio *
4eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * Licensed under the Apache License, Version 2.0 (the "License");
5eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * you may not use this file except in compliance with the License.
6eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * You may obtain a copy of the License at
7eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio *
8eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio *      http://www.apache.org/licenses/LICENSE-2.0
9eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio *
10eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * Unless required by applicable law or agreed to in writing, software
11eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * distributed under the License is distributed on an "AS IS" BASIS,
12eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * See the License for the specific language governing permissions and
14eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio * limitations under the License.
15eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio */
16eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio
17eee49c699c035ffba188417489f40d34f587d65cFabrice Di Megliopackage com.android.bidi;
18eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio
19eee49c699c035ffba188417489f40d34f587d65cFabrice Di Megliopublic class BiDiTestConstants {
20eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio    public static final int FONT_MIN_SIZE = 8;
21eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio    public static final int FONT_MAX_SIZE = 72;
22eee49c699c035ffba188417489f40d34f587d65cFabrice Di Meglio}
23