/** * Copyright (c) 2019 CentraleSupélec & EDF. * 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 * * This file is part of the RiseClipse tool * * Contributors: * Computer Science Department, CentraleSupélec * EDF R&D * Contacts: * dominique.marcadet@centralesupelec.fr * aurelie.dehouck-neveu@edf.fr * Web site: * http://wdi.supelec.fr/software/RiseClipse/ * */ package fr.centralesupelec.edf.riseclipse.iec61850.nsd; import javax.xml.datatype.XMLGregorianCalendar; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Changes</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Namespace history, e.g., which version it is based on and which TISSUES it includes since then. * <!-- end-model-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getChangesID <em>Changes ID</em>}</li> * <li>{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getDate <em>Date</em>}</li> * <li>{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getRevision <em>Revision</em>}</li> * <li>{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getTissues <em>Tissues</em>}</li> * </ul> * * @see fr.centralesupelec.edf.riseclipse.iec61850.nsd.NsdPackage#getChanges() * @model extendedMetaData="name='tChanges' kind='empty'" * @generated */ public interface Changes extends NSDObjectWithVersionAndRelease { /** * Returns the value of the '<em><b>Changes ID</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Documentation identifier referring to a textual description of changes (not TISSUE list). Shall only be used for private namespaces. * <!-- end-model-doc --> * @return the value of the '<em>Changes ID</em>' attribute. * @see #setChangesID(String) * @see fr.centralesupelec.edf.riseclipse.iec61850.nsd.NsdPackage#getChanges_ChangesID() * @model extendedMetaData="kind='attribute' name='changesID'" * @generated */ String getChangesID(); /** * Sets the value of the '{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getChangesID <em>Changes ID</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Changes ID</em>' attribute. * @see #getChangesID() * @generated */ void setChangesID( String value ); /** * Returns the value of the '<em><b>Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The date since the Tissues have been logged. * <!-- end-model-doc --> * @return the value of the '<em>Date</em>' attribute. * @see #setDate(XMLGregorianCalendar) * @see fr.centralesupelec.edf.riseclipse.iec61850.nsd.NsdPackage#getChanges_Date() * @model dataType="org.eclipse.emf.ecore.xml.type.Date" * extendedMetaData="kind='attribute' name='date'" * @generated */ XMLGregorianCalendar getDate(); /** * Sets the value of the '{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#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>Revision</b></em>' attribute. * The default value is <code>"A"</code>. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Revision of the namespace this NSD file is based on, per default 'A'. * <!-- end-model-doc --> * @return the value of the '<em>Revision</em>' attribute. * @see #isSetRevision() * @see #unsetRevision() * @see #setRevision(String) * @see fr.centralesupelec.edf.riseclipse.iec61850.nsd.NsdPackage#getChanges_Revision() * @model default="A" unsettable="true" * extendedMetaData="kind='attribute' name='revision'" * @generated */ String getRevision(); /** * Sets the value of the '{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getRevision <em>Revision</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Revision</em>' attribute. * @see #isSetRevision() * @see #unsetRevision() * @see #getRevision() * @generated */ void setRevision( String value ); /** * Unsets the value of the '{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getRevision <em>Revision</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetRevision() * @see #getRevision() * @see #setRevision(String) * @generated */ void unsetRevision(); /** * Returns whether the value of the '{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getRevision <em>Revision</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Revision</em>' attribute is set. * @see #unsetRevision() * @see #getRevision() * @see #setRevision(String) * @generated */ boolean isSetRevision(); /** * Returns the value of the '<em><b>Tissues</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Comma-separated list of TISSUE numbers that were implemented since the previous namespace version/revision/release. * <!-- end-model-doc --> * @return the value of the '<em>Tissues</em>' attribute. * @see #setTissues(String) * @see fr.centralesupelec.edf.riseclipse.iec61850.nsd.NsdPackage#getChanges_Tissues() * @model extendedMetaData="kind='attribute' name='tissues'" * @generated */ String getTissues(); /** * Sets the value of the '{@link fr.centralesupelec.edf.riseclipse.iec61850.nsd.Changes#getTissues <em>Tissues</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Tissues</em>' attribute. * @see #getTissues() * @generated */ void setTissues( String value ); } // Changes