Package ptolemy.kernel.util

Examples of ptolemy.kernel.util.NamedObj.attributeChanged()


     */
    public Collection validate() throws IllegalActionException {
        NamedObj container = getContainer();

        if (container != null) {
            container.attributeChanged(this);
        }
        return null;
    }

    ///////////////////////////////////////////////////////////////////
View Full Code Here


        // if (!_isLazy && !neededEvaluation) {
        if (!_isLazy) {
            NamedObj container = getContainer();

            if (container != null) {
                container.attributeChanged(this);
            }
        }

        // The propagate call has evaluated all the value
        // listeners that are instances of Variable,
View Full Code Here

                if (!oldVarType.equals(_varType)
                        && (oldVarType != BaseType.UNKNOWN)) {
                    container.attributeTypeChanged(this);
                }

                container.attributeChanged(this);
            }

            _notifyValueListeners();
        } catch (IllegalActionException ex) {
            // reverse the changes
View Full Code Here

        _value = uri;

        NamedObj container = getContainer();

        if (container != null) {
            container.attributeChanged(this);
        }
    }

    /** Set the value of the URI by specifying a URL,
     *  and call the attributeChanged() method of the container.
View Full Code Here

        }

        NamedObj container = getContainer();

        if (container != null) {
            container.attributeChanged(this);
        }
    }

    ///////////////////////////////////////////////////////////////////
    ////                         private variables                 ////
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.