/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.office; import javax.xml.datatype.XMLGregorianCalendar; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.oasisopen.names.tc.opendocument.xmlns.text.PType; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Change Info Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.office.ChangeInfoType#getCreator <em>Creator</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.office.ChangeInfoType#getDate <em>Date</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.office.ChangeInfoType#getP <em>P</em>}</li> * </ul> * </p> * * @see org.oasisopen.names.tc.opendocument.xmlns.office.OfficePackage#getChangeInfoType() * @model extendedMetaData="name='change-info_._type' kind='elementOnly'" * @generated */ public interface ChangeInfoType extends EObject { /** * Returns the value of the '<em><b>Creator</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Creator</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Creator</em>' attribute. * @see #setCreator(String) * @see org.oasisopen.names.tc.opendocument.xmlns.office.OfficePackage#getChangeInfoType_Creator() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.String" required="true" * extendedMetaData="kind='element' name='creator' namespace='http://purl.org/dc/elements/1.1/'" * @generated */ String getCreator(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.office.ChangeInfoType#getCreator <em>Creator</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Creator</em>' attribute. * @see #getCreator() * @generated */ void setCreator(String value); /** * Returns the value of the '<em><b>Date</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Date</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Date</em>' attribute. * @see #setDate(XMLGregorianCalendar) * @see org.oasisopen.names.tc.opendocument.xmlns.office.OfficePackage#getChangeInfoType_Date() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.DateTime" required="true" * extendedMetaData="kind='element' name='date' namespace='http://purl.org/dc/elements/1.1/'" * @generated */ XMLGregorianCalendar getDate(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.office.ChangeInfoType#getDate <em>Date</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Date</em>' attribute. * @see #getDate() * @generated */ void setDate(XMLGregorianCalendar value); /** * Returns the value of the '<em><b>P</b></em>' containment reference list. * The list contents are of type {@link org.oasisopen.names.tc.opendocument.xmlns.text.PType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>P</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>P</em>' containment reference list. * @see org.oasisopen.names.tc.opendocument.xmlns.office.OfficePackage#getChangeInfoType_P() * @model containment="true" * extendedMetaData="kind='element' name='p' namespace='urn:oasis:names:tc:opendocument:xmlns:text:1.0'" * @generated */ EList<PType> getP(); } // ChangeInfoType