use of arez.annotations.Autorun in project arez by arez.
the class CurrencyView method renderView.
@Autorun
public void renderView() {
final Element element = DomGlobal.document.getElementById("currencyTracker");
element.innerHTML = "1 BTC = $" + bitcoin.getAmount() + "AUD";
}