blob: bb0a6fdd8c4ed072b86f945c8dd30e50343e640f [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.lenya.cms.repo.metadata;
/**
* Definition of a set of meta data elements.
*/
public interface ElementSet {
/**
* @return The supported elements.
*/
Element[] getElements();
/**
* @param name The name.
* @return The element.
*/
Element getElement(String name);
/**
* @param name The name.
* @return If an element with this name is contained.
*/
boolean contains(String name);
}