From 0b373102f64fd7bfd25837a24ffb4ccb44b9d7e9 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Thu, 1 Mar 2018 14:16:15 -0500 Subject: Finish most of CL formatting. There are a couple of unimplemented directives, but the only ones I'd consider anywhere near crucial would be the floating-point ones, which I'm not sure what I should do with them. --- .../java/bjc/utils/ioutils/format/Directive.java | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 base/src/main/java/bjc/utils/ioutils/format/Directive.java (limited to 'base/src/main/java/bjc/utils/ioutils/format/Directive.java') diff --git a/base/src/main/java/bjc/utils/ioutils/format/Directive.java b/base/src/main/java/bjc/utils/ioutils/format/Directive.java deleted file mode 100644 index fb03bbc..0000000 --- a/base/src/main/java/bjc/utils/ioutils/format/Directive.java +++ /dev/null @@ -1,35 +0,0 @@ -package bjc.utils.ioutils.format; - -import java.util.regex.Matcher; - -import bjc.utils.esodata.Tape; - -/** - * A CL format directive. - * - * @author EVE - * - */ -@FunctionalInterface -public interface Directive { - /** - * Execute this format directive. - * - * @param sb - * The buffer the string is being output to. - * @param item - * The current parameter being passed - * @param mods - * The directive modifiers - * @param arrParams - * The prefix parameters to the directive - * @param tParams - * All of the provided format parameters - * @param dirMatcher - * The matcher for format directives - * @param fmt - * The formatter itself. - */ - public void format(StringBuffer sb, Object item, CLModifiers mods, CLParameters arrParams, Tape tParams, - Matcher dirMatcher, CLFormatter fmt); -} \ No newline at end of file -- cgit v1.2.3