After defining your Talons and Joystick objects in your Robot class, create a RobotDrive object like so:
Code:
RobotDrive drive = new RobotDrive(leftTalon, rightTalon);
Then simply call the tank drive function on your RobotDrive object:
Code:
drive.tankDrive(leftJoystick, rightJoystick);