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

com.redhat.ceylon.langtools.tools.javac.resources.version Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.langtools.tools.javac.resources;

import java.util.ListResourceBundle;

import com.redhat.ceylon.common.Versions;

public final class version extends ListResourceBundle {
    private static final Object CEYLON_VERSION = "ceylonc " + Versions.CEYLON_VERSION;

    protected final Object[][] getContents() {
        return new Object[][] {
            { "full", CEYLON_VERSION },
            { "jdk", CEYLON_VERSION },
            { "release", CEYLON_VERSION },
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy