/* * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.eresource; import org.eclipse.emf.cdo.common.lob.CDOClob; import java.io.Reader; /** * A representation of the model object 'CDO Text Resource'. * * @since 4.1 * @noextend This interface is not intended to be extended by clients. *

* The following features are supported: *

*

* @see org.eclipse.emf.cdo.eresource.EresourcePackage#getCDOTextResource() * @model * @generated */ public interface CDOTextResource extends CDOFileResource { /** * Returns the value of the 'Contents' attribute. *

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

* * * @return the value of the 'Contents' attribute. * @see #setContents(CDOClob) * @see org.eclipse.emf.cdo.eresource.EresourcePackage#getCDOTextResource_Contents() * @model dataType="org.eclipse.emf.cdo.etypes.Clob" required="true" * @generated */ CDOClob getContents(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.eresource.CDOTextResource#getContents Contents}' * attribute. * * @param value * the new value of the 'Contents' attribute. * @see #getContents() * @generated */ void setContents(CDOClob value); } // CDOTextResource