Package railo.runtime.functions.dateTime

Source Code of railo.runtime.functions.dateTime.Now

package railo.runtime.functions.dateTime;

import railo.runtime.PageContext;
import railo.runtime.ext.function.Function;
import railo.runtime.type.dt.DateTime;
import railo.runtime.type.dt.DateTimeImpl;

/**
* Implements the CFML Function now
*/
public final class Now implements Function {
  /**
   * @param pc
   * @return
   */
  public static DateTime call(PageContext pc ) {
    return new DateTimeImpl(pc);
  }
 
  /*public static DateTime now() {
    return new DateTimeImpl();
  }*/
}
TOP

Related Classes of railo.runtime.functions.dateTime.Now

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.