Version.java 695 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.ut;

public class Version {
    private static boolean mbTestMode = false;
    private static final String Specification = "3.6.0.4212";
    private static final String Implementation = "3.6.0.4212";

    private Version() {
    }

    public static final String getSpecification() {
        if (mbTestMode) {
            return "x.x.x.x";
        }
        return "3.6.0.4212";
    }

    public static final String getImplementation() {
        if (mbTestMode) {
            return "x.x.x.x";
        }
        return "3.6.0.4212";
    }

    public static final void setTestMode(boolean bMode) {
        mbTestMode = bMode;
    }
}