-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractFunction.java
74 lines (69 loc) · 2.58 KB
/
AbstractFunction.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package net.quickwrite.fluent4j.functions;
import net.quickwrite.fluent4j.util.args.FluentArgs;
import net.quickwrite.fluent4j.util.args.FunctionFluentArgs;
import net.quickwrite.fluent4j.util.bundle.DirectFluentBundle;
import net.quickwrite.fluent4j.ast.placeable.base.FluentPlaceable;
import net.quickwrite.fluent4j.ast.placeable.NumberLiteral;
/**
* Functions provide additional functionality available to the localizers.
*
* <p>
* They can be either used to format data according to the current language's rules
* or can provide additional data that the localizer may use (like, the platform,
* or time of the day) to fine tune the translation.
*/
public abstract class AbstractFunction {
private final String identifier;
/**
* The initializer of the function.
* <br>
* <hr>
*
* <p>
* The identifier of the function will be changed to
* {@code UPPERCASE} even if the identifier is completely
* lowercase. If the function wouldn't be uppercase it cannot
* be called at all as function identifiers are defined
* tp be completely uppercase and so wouldn't be parsed.
* <br>
* So the identifier {@code hello} would result in {@code HELLO}.
* </p>
*
* @param identifier The identifier on how the function should be called.
*/
public AbstractFunction(final String identifier) {
this.identifier = identifier.toUpperCase();
}
/**
* Returns the identifier of the function so
* that it can be used to check if it is
* the correct function to be called.
*
* @return The identifier of the function
*/
public String getIdentifier() {
return this.identifier;
}
/**
* Returns the value that should result from the
* specific argument or the bundle itself. <br>
* (For example the language or a single parameter)
*
* <p>
* So when the function is an {@code ADD()} function
* it could have two different named arguments that
* are added inside of the result function and then
* returned as a {@link NumberLiteral}. <br>
* So when the function is implemented this:
* <pre>
* test = { $n1 } + { $n2 } = { ADD($n1, $n2) }
* </pre>
* with the parameters {@code $n1 = 26} and {@code $n2 = 16}
* would result in {@code 26 + 16 = 42}.
*
* @param bundle The bundle that this is getting called from
* @param arguments The arguments the function gets
* @return The result
*/
public abstract FluentPlaceable getResult(final DirectFluentBundle bundle, final FunctionFluentArgs arguments);
}