IppOffset.java
933 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 IppOffset {
public IppOffset() {
Ipp.Assert(false, "IppOffset ctor");
}
public static void Print(Writer tf, String label, int it) throws IOException {
String ll = label + "IppOffset: ";
tf.write(ll);
tf.write("" + it + "\n");
}
public static void PrintArray(Writer tf, String label, int[] it) throws IOException {
String ll = label + "IppOffset 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 + "IppOffset[" + String.valueOf(i) + "]: ";
IppOffset.Print(tf, ll, it[i]);
}
}
}