001    /*
002     * Copyright (c) 2008, Your Corporation. All Rights Reserved.
003     */
004    
005    package org.chenillekit.tapestry.core.bindings;
006    
007    import java.util.List;
008    
009    import org.apache.tapestry5.Binding;
010    import org.apache.tapestry5.ioc.Location;
011    
012    /**
013     * Binding type for collection values.
014     * This binding called by expression "loop:".
015     *
016     * @version $Id: LoopBinding.java 594 2009-12-05 15:17:26Z mlusetti $
017     */
018    public class LoopBinding extends ListBinding
019    {
020        public LoopBinding(Location location, List<Binding> bindings, boolean invariant)
021        {
022            super(location, bindings, invariant);
023        }
024    }