aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java')
-rw-r--r--Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java b/Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java
index e40b0bd1..b4b09e15 100644
--- a/Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java
+++ b/Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/src/hu/bme/mit/inf/dslreasoner/domains/alloyexamples/Filesystem/impl/FilesystemFactoryImpl.java
@@ -70,6 +70,7 @@ public class FilesystemFactoryImpl extends EFactoryImpl implements FilesystemFac
70 * <!-- end-user-doc --> 70 * <!-- end-user-doc -->
71 * @generated 71 * @generated
72 */ 72 */
73 @Override
73 public FileSystem createFileSystem() { 74 public FileSystem createFileSystem() {
74 FileSystemImpl fileSystem = new FileSystemImpl(); 75 FileSystemImpl fileSystem = new FileSystemImpl();
75 return fileSystem; 76 return fileSystem;
@@ -80,6 +81,7 @@ public class FilesystemFactoryImpl extends EFactoryImpl implements FilesystemFac
80 * <!-- end-user-doc --> 81 * <!-- end-user-doc -->
81 * @generated 82 * @generated
82 */ 83 */
84 @Override
83 public Dir createDir() { 85 public Dir createDir() {
84 DirImpl dir = new DirImpl(); 86 DirImpl dir = new DirImpl();
85 return dir; 87 return dir;
@@ -90,6 +92,7 @@ public class FilesystemFactoryImpl extends EFactoryImpl implements FilesystemFac
90 * <!-- end-user-doc --> 92 * <!-- end-user-doc -->
91 * @generated 93 * @generated
92 */ 94 */
95 @Override
93 public File createFile() { 96 public File createFile() {
94 FileImpl file = new FileImpl(); 97 FileImpl file = new FileImpl();
95 return file; 98 return file;
@@ -100,6 +103,7 @@ public class FilesystemFactoryImpl extends EFactoryImpl implements FilesystemFac
100 * <!-- end-user-doc --> 103 * <!-- end-user-doc -->
101 * @generated 104 * @generated
102 */ 105 */
106 @Override
103 public Model createModel() { 107 public Model createModel() {
104 ModelImpl model = new ModelImpl(); 108 ModelImpl model = new ModelImpl();
105 return model; 109 return model;
@@ -110,6 +114,7 @@ public class FilesystemFactoryImpl extends EFactoryImpl implements FilesystemFac
110 * <!-- end-user-doc --> 114 * <!-- end-user-doc -->
111 * @generated 115 * @generated
112 */ 116 */
117 @Override
113 public FilesystemPackage getFilesystemPackage() { 118 public FilesystemPackage getFilesystemPackage() {
114 return (FilesystemPackage)getEPackage(); 119 return (FilesystemPackage)getEPackage();
115 } 120 }