IppDate.java 921 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.scene7.is.ipp.messages;

import com.scene7.is.ipp.messages.Ipp;
import java.io.IOException;
import java.io.Writer;

public class IppDate {
    public IppDate() {
        Ipp.Assert(false, "IppDate ctor");
    }

    public static void Print(Writer tf, String label, long it) throws IOException {
        String ll = label + "IppDate: ";
        tf.write(ll);
        tf.write("" + it + "\n");
    }

    public static void PrintArray(Writer tf, String label, long[] it) throws IOException {
        String ll = label + "IppDate Array, length: ";
        tf.write(ll);
        if (it == null) {
            tf.write("NULL!!!\n");
            return;
        }
        tf.write("" + it.length + "\n");
        for (int i = 0; i < it.length; ++i) {
            ll = label + "IppDate[" + String.valueOf(i) + "]: ";
            IppDate.Print(tf, ll, it[i]);
        }
    }
}