Package controllers

Source Code of controllers.RenderArgsController

/*
* Copyright 2012 Ben Verbeken
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package controllers;

import models.Person;
import play.mvc.Controller;

import java.util.Date;

import static com.google.common.collect.Lists.newArrayList;

@SuppressWarnings("UnusedDeclaration")
public class RenderArgsController extends Controller {

  public static void arg1() {
    addRenderArg("arg1");
  }


  public static void arg2() {
    addRenderArg("arg2");
  }

  private static void addRenderArg(String argName) {
    renderArgs.put(argName, "the current time is: " + new Date());
  }
 
  public static void people(){   
    renderArgs.put("people", newArrayList(
        new Person("Alex"),
        new Person("Ben"),
        new Person("Caroline")
    ));
  }
}
TOP

Related Classes of controllers.RenderArgsController

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.