comparison src/nabble/view/web/template/TagArgs.java @ 0:7ecd1a4ef557

add content
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 21 Mar 2019 19:15:52 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7ecd1a4ef557
1 package nabble.view.web.template;
2
3 import nabble.naml.compiler.Interpreter;
4 import nabble.naml.compiler.IPrintWriter;
5
6
7 public final class TagArgs {
8 public final IPrintWriter out;
9 public final Interpreter interp;
10
11 public TagArgs(IPrintWriter out,Interpreter interp) {
12 this.out = out;
13 this.interp = interp;
14 }
15 }