blob: ebb92ca26f62817f3338ecdca7c7e8573513ed02 [file] [log] [blame]
// Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.utils;
public class IntBox {
private int value;
public IntBox() {}
public IntBox(int initialValue) {
set(initialValue);
}
public int get() {
return value;
}
public int getAndIncrement() {
return value++;
}
public void increment() {
value++;
}
public void set(int value) {
this.value = value;
}
}