Line | |
---|
1 | /* |
---|
2 | * Builtin Interface. |
---|
3 | * |
---|
4 | * @author Ken Herdy <ksherdy at sfu dot ca> |
---|
5 | * |
---|
6 | */ |
---|
7 | |
---|
8 | package toolchain.b2k.lang.paramBuiltin; |
---|
9 | |
---|
10 | public interface B2KParamBuiltin { |
---|
11 | |
---|
12 | /** Yields a printable string for information about this builtin. |
---|
13 | * Use this rather than toString() if you want an abbreviated string. |
---|
14 | * |
---|
15 | * @return string representation of builtin. |
---|
16 | */ |
---|
17 | public String infoString(); |
---|
18 | |
---|
19 | /** Returns the builtin with any builtin variables filled in with their values. |
---|
20 | */ |
---|
21 | public B2KParamBuiltin getConcreteBuiltin(); |
---|
22 | |
---|
23 | } |
---|
24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.