public class IntClass { private int theInteger_; public void set( int input ) { theInteger_ = input; } public int get( ) { return theInteger_; } }