Package ptolemy.kernel.util

Examples of ptolemy.kernel.util.CrossRefList$CrossRef


     *   be cloned.
     *  @return A new Relation.
     */
    public Object clone(Workspace workspace) throws CloneNotSupportedException {
        Relation newObject = (Relation) super.clone(workspace);
        newObject._linkList = new CrossRefList(newObject);
        return newObject;
    }
View Full Code Here


     *   cannot be cloned.
     *  @return A new Port.
     */
    public Object clone(Workspace workspace) throws CloneNotSupportedException {
        Port newObject = (Port) super.clone(workspace);
        newObject._relationsList = new CrossRefList(newObject);
        newObject._insideLinks = new CrossRefList(newObject);
        newObject._container = null;
        return newObject;
    }
View Full Code Here

     *   attributes cannot be cloned.
     *  @return A new ComponentPort.
     */
    public Object clone(Workspace workspace) throws CloneNotSupportedException {
        ComponentPort newObject = (ComponentPort) super.clone(workspace);
        newObject._insideLinks = new CrossRefList(newObject);
        return newObject;
    }
View Full Code Here

TOP

Related Classes of ptolemy.kernel.util.CrossRefList$CrossRef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.