/*
 * Task 06:
 * 
 * Add access modifiers to the following field declarations where necessary, 
 * such that the indicated visibility is achieved
 */

package task06;

public class AccessModifiers {
	
	// INSERT ACCESS MODIFIERS BELOW
	
	// x should be accessible wherever the class AccessModifiers is accessible
	// (inside and outside the package task06)
	int x;
	
	// y should be accessible within the package task06, but nowhere else
	int y;
	
	// z should be accessible only within the class AccessModifiers
	int z;
	
	// w should be accessible in subclasses of the class AccessModifiers, and
	// in the package task06, but nowhere else
	int w;

}
