/**
 * 
 */
/**
 * @author dewan
 *
 */
/*
 * PRIMITIVE VS OBJECT AND INSTANCE VARIABLE VS PROPERTY REVIEW
 * 
 * Identify an instance variable and property in this @WebDocuments({"Lectures/CompositeObjectsShapesExtra.pptx", "Lectures/CompositeObjectsShapesExtra.pdf", "Videos/CompositeObjectsShapesExtra.avi"})
class whose type is
 * an object type (class or interface).
 * 
 * Identify an instance variable and property whose type is
 * an object type (class or interface).
 * 
 * (T/F) ALineWithObjectProperty defines an instance variable called width
 * whose type is a primitive type. * 
 * 
 * (T/F) ALineWithObjectProperty defines an instance variable called location 
 * whose type is an object type.
 * 
 * (T/F) ALineWithObjectProperty defines a property called Location 
 * whose type is a primitive type.
 *
 * 
 * (T/F) ACartesianPoint defines an instance variable called radius whose type
 * is a primitive type.
 * 
 * (T/F) ACartesianPoint defines a property called Radius whose type
 * is a primitive type. * 
 * 
 * (T/F) AnInteger defines a property called wrappedInt whose type is a primitive
 * type. (This is tricky for those who do not understand properties)
 * 
 * (T/F) AnInteger defines an instance variable called wrappedInt whose type
 * is a primitive type. 
 */
package lectures.composite.objects_shapes_extra;
import util.annotations.WebDocuments;