| /** |
| */ |
| package filesystem; |
| |
| import org.eclipse.emf.common.util.EList; |
| |
| /** |
| * <!-- begin-user-doc --> |
| * A representation of the model object '<em><b>Folder</b></em>'. |
| * <!-- end-user-doc --> |
| * |
| * <p> |
| * The following features are supported: |
| * <ul> |
| * <li>{@link filesystem.Folder#getContents <em>Contents</em>}</li> |
| * </ul> |
| * </p> |
| * |
| * @see filesystem.FilesystemPackage#getFolder() |
| * @model |
| * @generated |
| */ |
| public interface Folder extends File |
| { |
| /** |
| * Returns the value of the '<em><b>Contents</b></em>' containment reference list. |
| * The list contents are of type {@link filesystem.File}. |
| * <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Contents</em>' containment reference list isn't clear, |
| * there really should be more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * @return the value of the '<em>Contents</em>' containment reference list. |
| * @see filesystem.FilesystemPackage#getFolder_Contents() |
| * @model containment="true" |
| * @generated |
| */ |
| EList<File> getContents(); |
| |
| } // Folder |