/* Test for port name problems with Entity.clone() Copyright (c) 2004-2005 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. PT_COPYRIGHT_VERSION_2 COPYRIGHTENDKEY */ package ptolemy.kernel.test; import ptolemy.kernel.Entity; import ptolemy.kernel.Port; import ptolemy.kernel.util.IllegalActionException; import ptolemy.kernel.util.NameDuplicationException; import ptolemy.kernel.util.Workspace; /** * Illustrates a problem with port naming and cloning. * <p> In this actor, the Java variable of the port is named * "poorlyNamedInput" but the constructor uses "input", which * is the wrong name. * This used to result in a NullPointerException. * Now, we test for this in Entity.clone(). * @author Christopher Brooks, based on code from Xiaowen Xin and Ilkay Altintas * @version $Id$ * @since Ptolemy II 4.1 */ public class PortNameProblem extends Entity { public PortNameProblem(Workspace workspace, String name) throws IllegalActionException, NameDuplicationException { super(workspace, name); // This port should be oke directoryOrURLPort = new Port(this, "directoryOrURL"); // The name of the port should passed to the constructor should // match the name of the variable. Entity.clone() assumes // that the names match. // Right: // poorlyNamedInput = new Port(this, "poorlyNamedInput"); // Wrong: poorlyNamedInput = new Port(this, "input"); } // This port, from actor/lib/io/DirectoryListing.java, is ok because // it ends in "Port" public Port directoryOrURLPort; //public Port input; public Port poorlyNamedInput; }