/* * TellTale.java 1.0 * * Example for OOP. * The idea is that I print out the argument * given to me in my constructor. This can * be used to see when I am instantiated. * * Used in ASuperClass and ASubClass. * Example program starts in InitializaOrderTest * */ package dk.itu.oop.lecture2; public class TellTale { TellTale(String s){ System.out.println("[TellTale] " + s); } }