001/*
002 * (C) Copyright 2006-2007 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nuxeo - initial API and implementation
016 *
017 * $Id: JOOoConvertPluginImpl.java 18651 2007-05-13 20:28:53Z sfermigier $
018 */
019
020package org.nuxeo.ecm.platform.picture.api.adapters;
021
022import org.nuxeo.ecm.platform.picture.api.PictureView;
023
024public interface MultiviewPicture {
025
026    PictureView getView(String name);
027
028    void removeView(String name);
029
030    void addView(PictureView view);
031
032    PictureView[] getViews();
033
034    void removeAllView();
035
036    String getHeadline();
037
038    void setHeadline(String headline);
039
040    String getSubheadline();
041
042    void setSubheadline(String subheadline);
043
044    String getByline();
045
046    void setByline(String byline);
047
048    String getDateline();
049
050    void setDateline(String dateline);
051
052    String getSlugline();
053
054    void setSlugline(String slugline);
055
056    String getCredit();
057
058    void setCredit(String credit);
059
060    String getLanguage();
061
062    void setLanguage(String language);
063
064    String getSource();
065
066    void setSource(String source);
067
068    String getOrigin();
069
070    void setOrigin(String origin);
071
072    String getGenre();
073
074    void setGenre(String genre);
075
076    String getCaption();
077
078    void setCaption(String caption);
079
080    String getTypage();
081
082    void setTypage(String typage);
083
084}