@OpenApiAll public static class ITool.Void extends java.lang.Object implements IVariable
For example:
<code> public void setValue(String value) { } </code>This method will return null in Velocity template
<code> $setValue('value') <-- return null </code>To avoid this problem we should
Void
class.
<code> public VOID setValue(String value) { return Void; } </code>This method will treat as empty String in Velocity template
<code> $setValue('value') <-- return nothing </code>
Constructor and Description |
---|
Void() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns a string representation of the object.
|
Copyright © 2010 - No Magic Asia