com.googlecode.d2j.util.Out Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package com.googlecode.d2j.util;
public interface Out {
void push();
void s(String s);
void s(String format, Object... arg);
void pop();
}