Package ariba.ui.aribaweb.core

Examples of ariba.ui.aribaweb.core.AWMissingBindingException


        _errorKey = (AWBinding)bindingsHashtable.remove(BindingNames.errorKey);
        _isValid = (AWBinding)bindingsHashtable.remove(BindingNames.isValid);
        _message = (AWBinding)bindingsHashtable.remove(BindingNames.message);

        if (_isValid == null && (_validator == null || _object == null)) {
            throw new AWMissingBindingException(getClass().getName() + ": Missing binding -- must have either \"isValid\" or both \"validator\" and \"object\" bindings.");
        }
        super.init(tagName, bindingsHashtable);
    }
View Full Code Here

TOP

Related Classes of ariba.ui.aribaweb.core.AWMissingBindingException

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.