/** * * Copyright (c) 2004 - 2008 André Dietisheim, Switzerland. * 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: * André Dietisheim - initial API and implementation * * * $Id: CDOAuditDef.java,v 1.1 2008-12-31 14:43:30 estepper Exp $ */ package org.eclipse.emf.cdo.defs; import java.util.Date; /** * A representation of the model object 'CDO Audit Def'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOAuditDef() * @model * @generated */ public interface CDOAuditDef extends CDOViewDef { /** * Returns the value of the 'Time Stamp' attribute. *

* If the meaning of the 'Time Stamp' attribute isn't clear, there really should be more of a description * here... *

* * * @return the value of the 'Time Stamp' attribute. * @see #setTimeStamp(Date) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOAuditDef_TimeStamp() * @model required="true" * @generated */ Date getTimeStamp(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOAuditDef#getTimeStamp Time Stamp}' attribute. * * * @param value * the new value of the 'Time Stamp' attribute. * @see #getTimeStamp() * @generated */ void setTimeStamp(Date value); } // CDOAuditDef