Package er.ajax.mootools.example.components

Source Code of er.ajax.mootools.example.components.MTAUCPeriodicalTestPage

package er.ajax.mootools.example.components;

import com.webobjects.appserver.WOActionResults;
import com.webobjects.appserver.WOContext;
import com.webobjects.foundation.NSTimestamp;

public class MTAUCPeriodicalTestPage extends Main {
   
  public NSTimestamp _now;
 
  public MTAUCPeriodicalTestPage(WOContext context) {
        super(context);
        _updateTime();
  }
 
  private void _updateTime() {
    _now = new NSTimestamp();
  }
 
  public WOActionResults updateTime() {
        _updateTime();
    return null;
  }

  public String pageTitle() {
    return "This demonstrates applying the frequency binding (4s) to the MTAjaxUpdateContainer";
  }
 
}
TOP

Related Classes of er.ajax.mootools.example.components.MTAUCPeriodicalTestPage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.