blob: f28fa3eb9a877eb0d2fefef32725859ce3107d18 [file] [log] [blame]
/*
* Copyright 1999-2004 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.cocoon.components.treeprocessor.sitemap;
import java.util.Set;
import org.apache.cocoon.components.treeprocessor.NamedContainerNode;
/**
* A VPC node that just invokes its children and store what parameters are sources.
*
* @version $Id$
*/
public class VPCNode extends NamedContainerNode {
Set sourceSet;
public VPCNode(String name, Set sourceSet) {
super(name);
this.sourceSet = sourceSet;
}
public Set getSources() {
return this.sourceSet;
}
}