5.15.19.Which modifiers used in XXXXXX would allow the BigWidget class to access the Widget.setWidth method?
package myPackage; public class Widget extends Object{ private int myWidth;
XXXXXX void setWidth( int n ) {
myWidth = n;
}
}
// the following is in a separate file import myPackage.Widget ; public class BigWidget extends Widget {
BigWidget() {
setWidth( 204 );
}
}
A. private
B. protected
C. blank(no statement)
D. public