package example; // MSOE. Dr. Yoder. 07 October 2015. /** * This is just to illustrate why we need packages. * We want to use java.util.RandomExample, * but here is another class (that doesn't do anything) * called RandomExample as well. How do we tell the difference? * They are in different packages. * * Although it does nothing, we will pretend it * represents a random image that we would like to show * on the screen. * * In practice, it would be better to call this class * RandomImage to avoid the naming conflict. * * This example is used by class5_2_PackagesAndRandomNumberGenerators */ public class Random { }