Package org.eclipse.sapphire.VersionCompatibilityService

Examples of org.eclipse.sapphire.VersionCompatibilityService.Data


        }
    }

    public final boolean compatible()
    {
        final Data data = data();
        return ( data == null ? true : data.compatible() );
    }
View Full Code Here


        return ( data == null ? true : data.compatible() );
    }
   
    public final Version version()
    {
        final Data data = data();
        return ( data == null ? null : data.version() );
    }
View Full Code Here

        return ( data == null ? null : data.version() );
    }
   
    public final String versioned()
    {
        final Data data = data();
        return ( data == null ? null : data.versioned() );
    }
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.VersionCompatibilityService.Data

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.