Iterate.java revision 2
736e78aff9e67436c35d4835c24fca667f3cadf3Julian Kornberger// The MIT License
736e78aff9e67436c35d4835c24fca667f3cadf3Julian Kornberger//
7fddcb75e338119e2a67382ef7965f676c5f1e7aEugen Kuksa// Copyright (c) 2004 Evren Sirin
736e78aff9e67436c35d4835c24fca667f3cadf3Julian Kornberger//
736e78aff9e67436c35d4835c24fca667f3cadf3Julian Kornberger// Permission is hereby granted, free of charge, to any person obtaining a copy
43b3e7c742a93b0a02f38afc10e81b5eb0b33bc6Julian Kornberger// of this software and associated documentation files (the "Software"), to
d6cf50ae9519bdb5252081061b3d6a7e0ccde20bEugen Kuksa// deal in the Software without restriction, including without limitation the
d6cf50ae9519bdb5252081061b3d6a7e0ccde20bEugen Kuksa// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
d6cf50ae9519bdb5252081061b3d6a7e0ccde20bEugen Kuksa// sell copies of the Software, and to permit persons to whom the Software is
43b3e7c742a93b0a02f38afc10e81b5eb0b33bc6Julian Kornberger// furnished to do so, subject to the following conditions:
43b3e7c742a93b0a02f38afc10e81b5eb0b33bc6Julian Kornberger//
43b3e7c742a93b0a02f38afc10e81b5eb0b33bc6Julian Kornberger// The above copyright notice and this permission notice shall be included in
a8c8f55f5daf60154e6066d24e6e7acdebad44d1Tim Reddehase// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
/*
* Created on Dec 28, 2003
*
*/
package org.mindswap.owls.process;
/**
* @author Evren Sirin
*
*/
public interface Iterate extends ControlConstruct {
public ControlConstruct getComponent();
public void setComponent(ControlConstruct component);
}