blob: ea4c01f23a2916d96c62a4efb59dbe9c3d3a4fdb [file] [log] [blame]
// Copyright 2009, 2010 The Apache Software Foundation
//
// 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 org.apache.tapestry5.integration.app1.pages;
import java.util.Date;
import org.apache.tapestry5.Block;
import org.apache.tapestry5.ValueEncoder;
import org.apache.tapestry5.ajax.MultiZoneUpdate;
import org.apache.tapestry5.annotations.InjectComponent;
import org.apache.tapestry5.annotations.Property;
import org.apache.tapestry5.corelib.components.Zone;
import org.apache.tapestry5.internal.services.StringValueEncoder;
import org.apache.tapestry5.ioc.annotations.Inject;
public class MultiZoneUpdateDemo
{
@Inject
private Block fredBlock, barneyBlock;
@Property
private String wilmaMessage = "Wilma Flintstone";
@InjectComponent
private Zone wilmaZone;
public Date getNow()
{
return new Date();
}
Object onActionFromUpdate()
{
wilmaMessage = "His Wife, Wilma.";
return new MultiZoneUpdate("fred", fredBlock).add("barney", barneyBlock).add("dino", "His dog, Dino.")
.add(wilmaZone);
}
public String[] getOptions()
{
return new String[]
{ "Red", "Green", "Blue" };
}
public ValueEncoder getEncoder()
{
return new StringValueEncoder();
}
}