12faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes/*
22faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Copyright (C) 2011 The Android Open Source Project
32faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
42faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
52faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * you may not use this file except in compliance with the License.
62faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * You may obtain a copy of the License at
72faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
82faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
92faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
102faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Unless required by applicable law or agreed to in writing, software
112faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
122faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * See the License for the specific language governing permissions and
142faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * limitations under the License.
152faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes */
16abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao
17abcfde3b9661618a88e170fac6fdf092a59eb993jeffhaoclass StaticsFromCode {
18abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final Object s0 = "android";
19abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao
20abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static Object getS0() {
21abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao        return s0;
22abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    }
23abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao}
24