blob: 19c57e2100894344d89a32c2559ef58e27e1a354 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.filesystem;
import org.eclipse.emf.ecore.EFactory;
/**
* <!-- begin-user-doc -->
* The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
* @see org.eclipse.rcptt.filesystem.FilesystemPackage
* @generated
*/
public interface FilesystemFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
FilesystemFactory eINSTANCE = org.eclipse.rcptt.filesystem.impl.FilesystemFactoryImpl.init();
/**
* Returns a new object of class '<em>Context</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Context</em>'.
* @generated
*/
FilesystemContext createFilesystemContext();
/**
* Returns a new object of class '<em>FS File</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>FS File</em>'.
* @generated
*/
FSFile createFSFile();
/**
* Returns a new object of class '<em>FS Folder</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>FS Folder</em>'.
* @generated
*/
FSFolder createFSFolder();
/**
* Returns a new object of class '<em>FS Capture Param</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>FS Capture Param</em>'.
* @generated
*/
FSCaptureParam createFSCaptureParam();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
FilesystemPackage getFilesystemPackage();
} //FilesystemFactory