//------------------------------------------------------------------------------ // Copyright (c) 2005, 2006 IBM Corporation and others. // 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: // IBM Corporation - initial implementation //------------------------------------------------------------------------------ package org.eclipse.epf.library.edit.util.model; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * @model */ public interface OrderInfo extends EObject { public static final String TYPE_MANUAL = "manual"; //$NON-NLS-1$ /** * * @return * @model */ String getName(); /** * Sets the value of the '{@link org.eclipse.epf.library.edit.util.model.OrderInfo#getName <em>Name</em>}' * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * * @return * @model type="java.lang.String" containment="true" */ EList getGUIDs(); /** * Returns the value of the '<em><b>Timestamp</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Timestamp</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Timestamp</em>' attribute. * @see #setTimestamp(long) * @see org.eclipse.epf.library.edit.util.model.ModelPackage#getOrderInfo_Timestamp() * @model * @generated */ long getTimestamp(); /** * Sets the value of the '{@link org.eclipse.epf.library.edit.util.model.OrderInfo#getTimestamp <em>Timestamp</em>}' * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Timestamp</em>' attribute. * @see #getTimestamp() * @generated */ void setTimestamp(long value); }