18b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes/*
28b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * Copyright (C) 2011 The Android Open Source Project
38b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes *
48b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
58b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * you may not use this file except in compliance with the License.
68b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * You may obtain a copy of the License at
78b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes *
88b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
98b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes *
108b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * Unless required by applicable law or agreed to in writing, software
118b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
128b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * See the License for the specific language governing permissions and
148b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes * limitations under the License.
158b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes */
168b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes
178b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughespackage libcore.util;
188b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes
198b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughespublic final class MutableShort {
208b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes    public short value;
218b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes
228b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes    public MutableShort(short value) {
238b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes        this.value = value;
248b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes    }
258b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes}
26