/** * Copyright (C) 2009-2013 BIMserver.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bimserver.models.store; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Object Modified</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.bimserver.models.store.ObjectModified#getFieldName <em>Field Name</em>}</li> * <li>{@link org.bimserver.models.store.ObjectModified#getOldValue <em>Old Value</em>}</li> * <li>{@link org.bimserver.models.store.ObjectModified#getNewValue <em>New Value</em>}</li> * </ul> * </p> * * @see org.bimserver.models.store.StorePackage#getObjectModified() * @model * @generated */ public interface ObjectModified extends CompareItem { /** * Returns the value of the '<em><b>Field Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Field Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Field Name</em>' attribute. * @see #setFieldName(String) * @see org.bimserver.models.store.StorePackage#getObjectModified_FieldName() * @model * @generated */ String getFieldName(); /** * Sets the value of the '{@link org.bimserver.models.store.ObjectModified#getFieldName <em>Field Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Field Name</em>' attribute. * @see #getFieldName() * @generated */ void setFieldName(String value); /** * Returns the value of the '<em><b>Old Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Old Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Old Value</em>' attribute. * @see #setOldValue(String) * @see org.bimserver.models.store.StorePackage#getObjectModified_OldValue() * @model * @generated */ String getOldValue(); /** * Sets the value of the '{@link org.bimserver.models.store.ObjectModified#getOldValue <em>Old Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Old Value</em>' attribute. * @see #getOldValue() * @generated */ void setOldValue(String value); /** * Returns the value of the '<em><b>New Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>New Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>New Value</em>' attribute. * @see #setNewValue(String) * @see org.bimserver.models.store.StorePackage#getObjectModified_NewValue() * @model * @generated */ String getNewValue(); /** * Sets the value of the '{@link org.bimserver.models.store.ObjectModified#getNewValue <em>New Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>New Value</em>' attribute. * @see #getNewValue() * @generated */ void setNewValue(String value); } // ObjectModified