All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redhat.ceylon.model.cmr.RuntimeResolver Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.model.cmr;

/**
 * Contract to determine the runtime version of a module 
 * from the compile time version.
 */
public interface RuntimeResolver {

    /**
     * Resolve the version of a module being used at runtime.
     * @param moduleName The module name  
     * @param moduleVersion The compile-time version
     * @return The runtime version
     */
    String resolveVersion(String moduleName, String moduleVersion);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy