12be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka/*
22be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * Copyright (C) 2012 The Android Open Source Project
32be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka *
42be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * Licensed under the Apache License, Version 2.0 (the "License");
52be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * you may not use this file except in compliance with the License.
62be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * You may obtain a copy of the License at
72be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka *
82be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka *      http://www.apache.org/licenses/LICENSE-2.0
92be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka *
102be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * Unless required by applicable law or agreed to in writing, software
112be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * distributed under the License is distributed on an "AS IS" BASIS,
122be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * See the License for the specific language governing permissions and
142be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka * limitations under the License.
152be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka */
162be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka
176bfd5f631908c4afd893c9b25b353e5e16c5fc0cTadashi G. Takaokapackage com.android.inputmethod.latin.maketext;
182be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka
192be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaokapublic class StringResource {
202be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka    public final String mName;
212be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka    public final String mValue;
222be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka    public final String mComment;
232be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka
242be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka    public StringResource(final String name, final String value, final String comment) {
252be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka        mName = name;
262be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka        mValue = value;
272be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka        mComment = comment;
282be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka    }
292be51f4fd0c5cd70c7a2757558ffe45e703700cfTadashi G. Takaoka}
30