Sign in
android
/
platform
/
external
/
annotation-tools
/
92b2dbfe09b2415c27de836ddfe7965a55e09f39
/
.
/
annotation-file-utilities
/
tests
/
IntCell.java
blob: ddc982b7119f825f10b5a17bb0282c0d79af0240 [
file
] [
log
] [
blame
]
package
annotator
.
tests
;
public
class
IntCell
{
private
int
i
;
public
IntCell
(
int
in
)
{
this
.
i
=
in
;
}
public
void
set
(
int
in
)
{
this
.
i
=
in
;
}
public
int
get
()
{
return
i
;
}
}