Package org.apache.beehive.controls.api.versioning

Examples of org.apache.beehive.controls.api.versioning.Version


     */
    protected static void enforceVersionRequired( ControlBean control, VersionRequired versionRequired )
    {
        Class controlIntf = ControlUtils.getMostDerivedInterface( control.getControlInterface() );

        Version versionPresent = (Version) controlIntf.getAnnotation( Version.class );
        if ( versionPresent != null )
        {
            ControlBean.enforceVersionRequired( controlIntf.getCanonicalName(), versionPresent, versionRequired );
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.beehive.controls.api.versioning.Version

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.