/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.app.xmlui.wing.element; /** * This interface represents all elements that are Metadata elements. * * There are two broad types of wing elements: structural and metadata. The * metadata elements describe information about the page, while structural * elements describe how to layout the page. * * @author Scott Phillips */ public interface MetadataElement { //FIXME: delete me????????? /** The name of the repository identifier attribute */ public static final String A_REPOSITORY_IDENTIFIER = "repositoryIdentifier"; }