diff --git a/.travis.yml b/.travis.yml index cd433bacb..34c18307a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,10 @@ node_js: - '7' jdk: - oraclejdk8 +addons: + apt: + packages: + - oracle-java8-installer env: - TERM=dumb install: diff --git a/README.md b/README.md index 48eb74c2f..d823e6682 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,17 @@ 2. From the Eclipse Marketplace, install - bndtools 3.3 - Acceleo 3.6 -3. Install node js -4. In the folder web, run npm install. +3. Install node js version 8 +4. In the folder web, run npm run init. +5. Import all projects in the bundles folder into your Eclipse workspace +6. Open specmate-std-env/dev-specmate-all.bndrun and hit the run button ## Developing the GUI -See ```web/README.md``` \ No newline at end of file +See ```web/README.md``` + +## Big Thanks + +Cross-browser Testing Platform and Open Source <3 Provided by [![Sauce Labs](Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png)][homepage] + +[homepage]: https://saucelabs.com diff --git a/Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png b/Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png new file mode 100644 index 000000000..1c2b14c4c Binary files /dev/null and b/Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png differ diff --git a/bundles/cnf/localrepo/index.xml b/bundles/cnf/localrepo/index.xml index 93bf8ef20..6669f8602 100644 --- a/bundles/cnf/localrepo/index.xml +++ b/bundles/cnf/localrepo/index.xml @@ -1,5 +1,5 @@ - + diff --git a/bundles/cnf/localrepo/index.xml.sha b/bundles/cnf/localrepo/index.xml.sha index 0578a54c6..772a98629 100644 --- a/bundles/cnf/localrepo/index.xml.sha +++ b/bundles/cnf/localrepo/index.xml.sha @@ -1 +1 @@ -e69e11017af52961825c2fc277d656b9e167524fcd1644cd2800c540dcc68976 \ No newline at end of file +c618a3e3d022ffb786ca36b0b27aa93a3093ab723675ce07e0231bce22e9d1d2 \ No newline at end of file diff --git a/bundles/specmate-auth-test/bnd.bnd b/bundles/specmate-auth-test/bnd.bnd index a1cfef601..94cf1c634 100644 --- a/bundles/specmate-auth-test/bnd.bnd +++ b/bundles/specmate-auth-test/bnd.bnd @@ -112,4 +112,5 @@ Test-Cases: \ specmate-connectors;version=snapshot,\ specmate-auth-api;version=snapshot,\ org.apache.felix.scr;version='[2.0.8,2.0.9)',\ - specmate-rest;version=snapshot \ No newline at end of file + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot \ No newline at end of file diff --git a/bundles/specmate-common/bnd.bnd b/bundles/specmate-common/bnd.bnd index 686473187..236b73640 100644 --- a/bundles/specmate-common/bnd.bnd +++ b/bundles/specmate-common/bnd.bnd @@ -14,4 +14,4 @@ Export-Package: \ org.eclipse.net4j.util,\ org.apache.commons.lang3,\ org.json;version=latest,\ - specmate-config-api;version=latest \ No newline at end of file + specmate-config-api;version=latest diff --git a/bundles/specmate-config/config/specmate-config.properties b/bundles/specmate-config/config/specmate-config.properties index b402d1ffc..e4272f827 100644 --- a/bundles/specmate-config/config/specmate-config.properties +++ b/bundles/specmate-config/config/specmate-config.properties @@ -35,10 +35,14 @@ h2.jdbcConnection = jdbc:h2:./database/specmate ## cron string to schedule, when connectors are triggered. ## Set to "disabled" (without quotes) to disable polling. ## default: disabled -## generic value (will trigger every minute): * * * * * -## See: http://www.sauronsoftware.it/projects/cron4j/manual.php +## generic value (will trigger every hour): hour +## example: day 13 14 5 will trigger every day at 13:14:05 +## example: hour 14 5 will trigger every hour at xx:14:05 +## example: minute 5 will trigger every minute at xx:xx:05 +## missing numbers are replaced by 0s. +## example: day 13 will trigger every day at 13:00:00 # connectorPollSchedule = disabled -connectorPollSchedule = * * * * * +connectorPollSchedule = day # Sarch Service search.allowedFields = extId, type, name, description diff --git a/bundles/specmate-connectors/bnd.bnd b/bundles/specmate-connectors/bnd.bnd index 721e47450..11f97cfc1 100644 --- a/bundles/specmate-connectors/bnd.bnd +++ b/bundles/specmate-connectors/bnd.bnd @@ -2,7 +2,6 @@ Export-Package: \ com.specmate.connectors.api,\ com.specmate.connectors.config -buildpath: \ - jar/cron4j-2.2.5.jar;version=file,\ specmate-common;version=latest,\ specmate-model-gen;version=latest,\ org.eclipse.osgi.services,\ @@ -25,8 +24,8 @@ Export-Package: \ org.objenesis,\ net.bytebuddy.byte-buddy,\ net.bytebuddy.byte-buddy-agent,\ - specmate-rest;version=latest + specmate-rest;version=latest,\ + specmate-scheduler;version=latest Private-Package: \ com.specmate.connectors.internal,\ - com.specmate.connectors.internal.config,\ - it.sauronsoftware.cron4j \ No newline at end of file + com.specmate.connectors.internal.config \ No newline at end of file diff --git a/bundles/specmate-connectors/jar/cron4j-2.2.5.jar b/bundles/specmate-connectors/jar/cron4j-2.2.5.jar deleted file mode 100644 index 90fc173e9..000000000 Binary files a/bundles/specmate-connectors/jar/cron4j-2.2.5.jar and /dev/null differ diff --git a/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorService.java b/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorService.java index ca112fd2b..5e321dd73 100644 --- a/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorService.java +++ b/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorService.java @@ -23,9 +23,9 @@ import com.specmate.connectors.internal.config.ConnectorServiceConfig; import com.specmate.persistency.IPersistencyService; import com.specmate.persistency.ITransaction; - -import it.sauronsoftware.cron4j.Scheduler; -import it.sauronsoftware.cron4j.SchedulingPattern; +import com.specmate.scheduler.Scheduler; +import com.specmate.scheduler.SchedulerIteratorFactory; +import com.specmate.scheduler.SchedulerTask; @Component(immediate = true, configurationPid = ConnectorServiceConfig.PID, configurationPolicy = ConfigurationPolicy.REQUIRE) public class ConnectorService { @@ -40,27 +40,34 @@ public class ConnectorService { public void activate(Map properties) throws SpecmateValidationException, SpecmateException { validateConfig(properties); - String cronStr = (String) properties.get(KEY_POLL_SCHEDULE); - if(cronStr == null) { + String schedule = (String) properties.get(KEY_POLL_SCHEDULE); + if(schedule == null) { return; } this.transaction = this.persistencyService.openTransaction(); - Runnable connectorRunnable = new ConnectorJobRunnable(requirementsSources, transaction, logService); + + new Thread(new Runnable() { + @Override + public void run() { + SchedulerTask connectorRunnable = new ConnectorTask(requirementsSources, transaction, logService); + connectorRunnable.run(); + + Scheduler scheduler = new Scheduler(); + try { + scheduler.schedule(connectorRunnable, SchedulerIteratorFactory.create(schedule)); + } catch (SpecmateException e) { + e.printStackTrace(); + } catch (SpecmateValidationException e) { + e.printStackTrace(); + } + } + }, "connector-service-initializer").start(); - Scheduler scheduler = new Scheduler(); - scheduler.schedule(cronStr, connectorRunnable); - scheduler.start(); } private void validateConfig(Map properties) throws SpecmateValidationException { - String cronStr = (String) properties.get(KEY_POLL_SCHEDULE); - if(!SchedulingPattern.validate(cronStr)) { - String message = "Cron " + cronStr + " invalid!"; - logService.log(LogService.LOG_ERROR, message); - throw new SpecmateValidationException(message); - - } + SchedulerIteratorFactory.validate((String) properties.get(KEY_POLL_SCHEDULE)); logService.log(LogService.LOG_DEBUG, "Connector service config validated."); } diff --git a/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorJobRunnable.java b/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorTask.java similarity index 85% rename from bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorJobRunnable.java rename to bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorTask.java index 05d9db32b..46eff4fc7 100644 --- a/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorJobRunnable.java +++ b/bundles/specmate-connectors/src/com/specmate/connectors/internal/ConnectorTask.java @@ -20,15 +20,17 @@ import com.specmate.model.requirements.Requirement; import com.specmate.model.support.util.SpecmateEcoreUtil; import com.specmate.persistency.ITransaction; +import com.specmate.scheduler.SchedulerTask; -public class ConnectorJobRunnable implements Runnable { +public class ConnectorTask extends SchedulerTask { + private static final int MAX_FIELD_LENGTH = 4000; private LogService logService; private ITransaction transaction; private List requirementsSources; - public ConnectorJobRunnable(List requirementsSources, ITransaction transaction, + public ConnectorTask(List requirementsSources, ITransaction transaction, LogService logService) { super(); this.requirementsSources = requirementsSources; @@ -91,6 +93,7 @@ private void syncContainers(IContainer localContainer, Collection r // add new requirements to local container and all folders on the way for (Entry entry : remoteRequirementsMap.entrySet()) { Requirement requirementToAdd = (Requirement) entry.getValue(); + capFieldSizes(requirementToAdd); IContainer reqContainer; try { reqContainer = source.getContainerForRequirement((Requirement) entry.getValue()); @@ -112,6 +115,16 @@ private void syncContainers(IContainer localContainer, Collection r } } + private void capFieldSizes(Requirement requirementToAdd) { + if(requirementToAdd.getName()!=null && requirementToAdd.getName().length()>MAX_FIELD_LENGTH){ + requirementToAdd.setName(requirementToAdd.getName().substring(0,MAX_FIELD_LENGTH-1)); + } + if(requirementToAdd.getDescription()!=null && requirementToAdd.getDescription().length()>MAX_FIELD_LENGTH){ + requirementToAdd.setDescription(requirementToAdd.getDescription().substring(0,MAX_FIELD_LENGTH-1)); + } + + } + private IContainer getOrCreateLocalContainer(Resource resource, String name) { EObject object = SpecmateEcoreUtil.getEObjectWithId(name, resource.getContents()); if (object != null) { diff --git a/bundles/specmate-dbprovider-api/bnd.bnd b/bundles/specmate-dbprovider-api/bnd.bnd index 5e237910f..d49c40a10 100644 --- a/bundles/specmate-dbprovider-api/bnd.bnd +++ b/bundles/specmate-dbprovider-api/bnd.bnd @@ -1,4 +1,9 @@ -buildpath: \ org.eclipse.emf.cdo.server,\ - specmate-common;version=latest -Export-Package: com.specmate.dbprovider.api \ No newline at end of file + specmate-common;version=latest,\ + osgi.annotation,\ + osgi.core,\ + osgi.cmpn +Export-Package: \ + com.specmate.dbprovider.api,\ + com.specmate.dbprovider.api.migration \ No newline at end of file diff --git a/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/IDBProvider.java b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/IDBProvider.java index 91c952c2d..b44819f8f 100644 --- a/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/IDBProvider.java +++ b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/IDBProvider.java @@ -5,6 +5,8 @@ import org.eclipse.emf.cdo.server.IStore; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; /** * Allows to interact with database back-ends without knowing the particular @@ -20,8 +22,8 @@ public interface IDBProvider { public Connection getConnection() throws SpecmateException; /** - * Register a client callback that can be called when the database - * configuration changes. + * Register a client callback that can be called when the database configuration + * changes. */ public void registerDBConfigChangedCallback(DBConfigChangedCallback cb); @@ -40,4 +42,18 @@ public interface IDBProvider { * @return true if the database is empty or does not exist, false otherwise */ public boolean isVirginDB() throws SpecmateException; + + /** + * Creates a new, database specific, attribute to SQL mapper that provides + * convenience functions for database migrations. + */ + public IAttributeToSQLMapper getAttributeToSQLMapper(String packageName, String sourceVersion, String targetVersion) + throws SpecmateException; + + /** + * Creates a new, database specific, object to SQL mapper that provides + * convenience functions for database migrations. + */ + public IObjectToSQLMapper getObjectToSQLMapper(String packageName, String sourceVersion, String targetVersion) + throws SpecmateException; } diff --git a/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IAttributeToSQLMapper.java b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IAttributeToSQLMapper.java new file mode 100644 index 000000000..c166e6663 --- /dev/null +++ b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IAttributeToSQLMapper.java @@ -0,0 +1,140 @@ +package com.specmate.dbprovider.api.migration; + +import java.util.Date; + +import com.specmate.common.SpecmateException; + +/** + * This interface defines operations that reflect changes of object attributes + * in an EMF Model. Implementations for specific database providers determine + * how these changes map to particular SQL dialects and features. + */ +public interface IAttributeToSQLMapper { + + /** + * Creates a new String attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param attributeName + * the name of the attribute that is added + * @param defaultValue + * the value that is stored in the database if the value in the + * object is not defined + * @throws SpecmateException + */ + void migrateNewStringAttribute(String objectName, String attributeName, String defaultValue) + throws SpecmateException; + + /** + * Creates a new Boolean attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param attributeName + * the name of the attribute that is added + * @param defaultValue + * the value that is stored in the database if the value in the + * object is not defined + * @throws SpecmateException + */ + void migrateNewBooleanAttribute(String objectName, String attributeName, Boolean defaultValue) + throws SpecmateException; + + /** + * Creates a new Integer attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param attributeName + * the name of the attribute that is added + * @param defaultValue + * the value that is stored in the database if the value in the + * object is not defined + * @throws SpecmateException + */ + void migrateNewIntegerAttribute(String objectName, String attributeName, Integer defaultValue) + throws SpecmateException; + + /** + * Creates a new Double attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param attributeName + * the name of the attribute that is added + * @param defaultValue + * the value that is stored in the database if the value in the + * object is not defined + * @throws SpecmateException + */ + void migrateNewDoubleAttribute(String objectName, String attributeName, Double defaultValue) + throws SpecmateException; + + /** + * Creates a new Long attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param attributeName + * the name of the attribute that is added + * @param defaultValue + * the value that is stored in the database if the value in the + * object is not defined + * @throws SpecmateException + */ + void migrateNewLongAttribute(String objectName, String attributeName, Long defaultValue) throws SpecmateException; + + /** + * Creates a new Date attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param attributeName + * the name of the attribute that is added + * @param defaultValue + * the value that is stored in the database if the value in the + * object is not defined + * @throws SpecmateException + */ + void migrateNewDateAttribute(String objectName, String attributeName, Date defaultValue) throws SpecmateException; + + /** + * Creates an attribute that represents a reference to another object. + * + * @param objectName + * the name of the object where the reference is added + * @param attributeName + * the name of the reference attribute that is added + * @throws SpecmateException + */ + void migrateNewReference(String objectName, String attributeName) throws SpecmateException; + + /** + * Renames an attribute. + * + * @param objectName + * the name of the object where the attribute is added + * @param oldAttributeName + * the old attribute name + * @param newAttributeName + * the new attribute name + * @throws SpecmateException + */ + void migrateRenameAttribute(String objectName, String oldAttributeName, String newAttributeName) + throws SpecmateException; + + /** + * Changes the data type of an attribute if a conversion is allowed. + * + * @param objectName + * the name of the object where the attribute is changed + * @param attributeName + * the name of the attribute whose type is changed + * @param targetType + * the target data type + * @throws SpecmateException + */ + void migrateChangeType(String objectName, String attributeName, IDataType targetType) throws SpecmateException; + +} \ No newline at end of file diff --git a/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IDataType.java b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IDataType.java new file mode 100644 index 000000000..cc1450b87 --- /dev/null +++ b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IDataType.java @@ -0,0 +1,55 @@ +package com.specmate.dbprovider.api.migration; + +import com.specmate.common.SpecmateException; + +/** + * This interface defines methods that help to represent the permissible data + * type conversions. + */ +public interface IDataType { + + /** + * @param target + * the target data type + * @return true if this data type can be converted into the target + * data type, false otherwise + * @throws SpecmateException + */ + boolean isConversionPossibleTo(IDataType target) throws SpecmateException; + + /** + * @return the name of the data type, as it is defined in the SQL dialect + */ + String getTypeName(); + + /** + * @return the name of the data type, as it is defined in the SQL dialect, + * together with the defined size + */ + String getTypeNameWithSize(); + + /** + * Some data types can be defined with a maximum size (e.g. strings). + * + * @param size + * the maximum size allowed for this data type + */ + void setSize(int size); + + /** + * @return the maximum size defined for this data type (-1 if no maximum is + * defined) + */ + int getSize(); + + /** + * @return true if a maximum size is defined, false + * otherwise + */ + boolean hasSize(); + + /** + * @return the ordinal of this enumeration constant + */ + int ordinal(); +} \ No newline at end of file diff --git a/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IObjectToSQLMapper.java b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IObjectToSQLMapper.java new file mode 100644 index 000000000..3ac64232c --- /dev/null +++ b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/IObjectToSQLMapper.java @@ -0,0 +1,20 @@ +package com.specmate.dbprovider.api.migration; + +import com.specmate.common.SpecmateException; + +/** + * This interface defines operations that reflect creating a new object in an + * EMF Model. Implementations for specific database providers determine how + * these changes map to particular SQL dialects and features. + */ +public interface IObjectToSQLMapper { + + /** + * Create a new Object + * + * @param objectName + * the name of the new object + * @throws SpecmateException + */ + public void newObject(String objectName) throws SpecmateException; +} diff --git a/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/SQLMapper.java b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/SQLMapper.java new file mode 100644 index 000000000..bba535eb0 --- /dev/null +++ b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/SQLMapper.java @@ -0,0 +1,73 @@ +package com.specmate.dbprovider.api.migration; + +import java.sql.Connection; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import com.specmate.common.SpecmateException; + +public abstract class SQLMapper { + protected static final String SPECMATE_URL = "http://specmate.com/"; + protected Connection connection; + protected String packageName; + protected String sourceVersion; + protected String targetVersion; + + public SQLMapper(Connection connection, String packageName, String sourceVersion, String targetVersion) { + this.connection = connection; + this.packageName = packageName; + this.sourceVersion = sourceVersion; + this.targetVersion = targetVersion; + } + + protected String insertExternalObjectReference(String objectName) throws SpecmateException { + return getInsertExternalReferenceQuery(getBaseURI(objectName), getLatestId() - 1); + } + + protected String insertExternalAttributeReference(String objectName, String attributeName) + throws SpecmateException { + + String attributeUri = getBaseURI(objectName) + "/" + attributeName; + return getInsertExternalReferenceQuery(attributeUri, getLatestId() - 1); + } + + protected String renameExternalReference(String objectName, String oldAttributeName, String newAttributeName) + throws SpecmateException { + String baseUri = SPECMATE_URL + targetVersion + "/" + packageName + "#//" + objectName + "/"; + String oldUri = baseUri + oldAttributeName; + String newUri = baseUri + newAttributeName; + return "UPDATE CDO_EXTERNAL_REFS SET uri = '" + newUri + "' WHERE uri = '" + oldUri + "'"; + } + + private String getInsertExternalReferenceQuery(String uri, int id) { + Date now = new Date(); + return "INSERT INTO CDO_EXTERNAL_REFS (ID, URI, COMMITTIME) " + "VALUES (" + id + ", '" + uri + "', " + + now.getTime() + ")"; + } + + private int getLatestId() throws SpecmateException { + return SQLUtil.getIntResult("SELECT id FROM CDO_EXTERNAL_REFS ORDER BY id ASC", 1, connection); + } + + private String getBaseURI(String objectName) { + return SPECMATE_URL + targetVersion + "/" + packageName + "#//" + objectName; + } + + protected boolean hasDefault(Object defaultValue) { + return defaultValue != null ? true : false; + } + + protected void executeChange(String alterString, String objectName, String attributeName, boolean setDefault) throws SpecmateException { + String failmsg = "Migration: Could not add column " + attributeName + " to table " + objectName + "."; + List queries = new ArrayList<>(); + queries.add(alterString); + + if (setDefault) { + queries.add("UPDATE " + objectName + " SET " + attributeName + " = DEFAULT"); + } + + queries.add(insertExternalAttributeReference(objectName, attributeName)); + SQLUtil.executeStatements(queries, connection, failmsg); + } +} diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/SQLUtil.java b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/SQLUtil.java similarity index 67% rename from bundles/specmate-migration/src/com/specmate/migration/h2/SQLUtil.java rename to bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/SQLUtil.java index 0d37fc233..dc595a9d2 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/SQLUtil.java +++ b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/SQLUtil.java @@ -1,4 +1,4 @@ -package com.specmate.migration.h2; +package com.specmate.dbprovider.api.migration; import java.sql.Connection; import java.sql.PreparedStatement; @@ -7,21 +7,22 @@ import java.util.ArrayList; import java.util.Date; import java.util.List; -import java.util.concurrent.ThreadLocalRandom; import com.specmate.common.SpecmateException; -public class SQLUtil { - +public class SQLUtil { + private static int seqId = 0; + public static void executeStatement(String query, Connection connection, String failmsg) throws SpecmateException { List queries = new ArrayList<>(); queries.add(query); executeStatements(queries, connection, failmsg); } - - public static void executeStatements(List queries, Connection connection, String failmsg) throws SpecmateException { + + public static void executeStatements(List queries, Connection connection, String failmsg) + throws SpecmateException { List statements = new ArrayList<>(); - + try { connection.setAutoCommit(false); for (String query : queries) { @@ -32,90 +33,106 @@ public static void executeStatements(List queries, Connection connection try { connection.rollback(); } catch (SQLException f) { - throw new SpecmateException(failmsg + " " + e.getMessage() + " " + f.getMessage()); + e.setNextException(f); + throw new SpecmateException(failmsg, e); } - - throw new SpecmateException(failmsg + " " + e.getMessage()); + + throw new SpecmateException(failmsg, e); } finally { try { closePreparedStatements(statements); connection.setAutoCommit(true); } catch (SQLException e) { - throw new SpecmateException(failmsg + " " + e.getMessage()); + throw new SpecmateException(failmsg, e); } } } - + public static int getIntResult(String query, int resultIndex, Connection connection) throws SpecmateException { String failmsg = "Could not retrieve integer value from column " + resultIndex + "."; int res = 0; ResultSet result = null; try { PreparedStatement st = SQLUtil.executeStatement(query, connection); - result = st.getResultSet(); + result = st.getResultSet(); if (result != null && result.next()) { res = result.getInt(resultIndex); } else { throw new SpecmateException(failmsg); } } catch (SQLException e) { - throw new SpecmateException(failmsg + " " + e.getMessage()); + throw new SpecmateException(failmsg, e); } finally { if (result != null) { try { result.close(); } catch (SQLException e) { - throw new SpecmateException("Could not close result set. " + e.getMessage()); + throw new SpecmateException("Could not close result set.", e); } } } - + return res; } - + public static ResultSet getResult(String query, Connection connection) throws SpecmateException { String failmsg = "Could not retrieve result from query: " + query + "."; ResultSet result = null; try { PreparedStatement st = SQLUtil.executeStatement(query, connection); - result = st.getResultSet(); + result = st.getResultSet(); if (result == null) { throw new SpecmateException(failmsg); } } catch (SQLException e) { - throw new SpecmateException(failmsg + " " + e.getMessage()); - } - + throw new SpecmateException(failmsg, e); + } + return result; } - + public static void closeResult(ResultSet result) throws SpecmateException { if (result != null) { try { result.close(); } catch (SQLException e) { - throw new SpecmateException("Could not close result set. " + e.getMessage()); + throw new SpecmateException("Could not close result set.", e); } } } - - public static String createRandomIdentifier(String prefix) { + + public static String createTimebasedIdentifier(String prefix, int maxLength) { Date now = new Date(); - return prefix + "_" + now.getTime() + "_" + ThreadLocalRandom.current().nextInt(0, Integer.MAX_VALUE); + String dateAsString = String.valueOf(now.getTime()); + String dateComponent = dateAsString.substring(dateAsString.length() - 4); + String uniqueID = "_" + dateComponent + "_" + seqId; // length of this is always 7 + assert (uniqueID.length() == 7); + + int maxPrefixLength = maxLength - uniqueID.length(); + int endIndex = prefix.length() > maxPrefixLength ? maxPrefixLength : prefix.length(); + String id = prefix.substring(0, endIndex) + uniqueID; + assert (id.length() <= maxLength); + + seqId++; + if (seqId > 9) { + seqId = 0; + } + + return id; } - + public static void closePreparedStatement(PreparedStatement stmt) throws SQLException { if (stmt != null) { stmt.close(); } } - + public static void closePreparedStatements(List statements) throws SQLException { - for(PreparedStatement stmt : statements) { + for (PreparedStatement stmt : statements) { closePreparedStatement(stmt); } } - + private static PreparedStatement executeStatement(String sql, Connection connection) throws SQLException { PreparedStatement stmt = connection.prepareStatement(sql); stmt.execute(); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/packageinfo b/bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/packageinfo similarity index 100% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/packageinfo rename to bundles/specmate-dbprovider-api/src/com/specmate/dbprovider/api/migration/packageinfo diff --git a/bundles/specmate-dbprovider-h2/bnd.bnd b/bundles/specmate-dbprovider-h2/bnd.bnd index 4805323cf..54b9fedc9 100644 --- a/bundles/specmate-dbprovider-h2/bnd.bnd +++ b/bundles/specmate-dbprovider-h2/bnd.bnd @@ -10,5 +10,7 @@ org.eclipse.emf.cdo.server.db,\ org.eclipse.net4j.db,\ org.eclipse.net4j.db.h2 -Export-Package: specmate.dbprovider.h2.config +Export-Package: \ + specmate.dbprovider.h2.config,\ + specmate.dbprovider.h2 Private-Package: specmate.dbprovider.h2 \ No newline at end of file diff --git a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/AttributeToSQLMapper.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/AttributeToSQLMapper.java new file mode 100644 index 000000000..ed6dad89a --- /dev/null +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/AttributeToSQLMapper.java @@ -0,0 +1,175 @@ +package specmate.dbprovider.h2; + +import java.sql.Connection; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IDataType; +import com.specmate.dbprovider.api.migration.SQLMapper; +import com.specmate.dbprovider.api.migration.SQLUtil; + +import specmate.dbprovider.h2.config.H2ProviderConfig; + +public class AttributeToSQLMapper extends SQLMapper implements IAttributeToSQLMapper { + + public AttributeToSQLMapper(Connection connection, String packageName, String sourceVersion, String targetVersion) { + super(connection, packageName, sourceVersion, targetVersion); + } + + @Override + public void migrateNewStringAttribute(String objectName, String attributeName, String defaultValue) + throws SpecmateException { + String alterString = "ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " VARCHAR(32672)"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT '" + defaultValue + "'"; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewBooleanAttribute(String objectName, String attributeName, Boolean defaultValue) + throws SpecmateException { + String alterString = "ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " BOOLEAN"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewIntegerAttribute(String objectName, String attributeName, Integer defaultValue) + throws SpecmateException { + String alterString = "ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " INTEGER"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue.intValue(); + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewDoubleAttribute(String objectName, String attributeName, Double defaultValue) + throws SpecmateException { + String alterString = "ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " DOUBLE"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewLongAttribute(String objectName, String attributeName, Long defaultValue) + throws SpecmateException { + String alterString = "ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " BIGINT"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewDateAttribute(String objectName, String attributeName, Date defaultValue) + throws SpecmateException { + String alterString = "ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " DATE"; + + if (hasDefault(defaultValue)) { + DateFormat df = new SimpleDateFormat("yyyy-MM-dd"); + alterString += " DEFAULT '" + df.format(defaultValue) + "'"; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewReference(String objectName, String attributeName) throws SpecmateException { + String failmsg = "Migration: Could not add column " + attributeName + " to table " + objectName + "."; + String tableNameList = objectName + "_" + attributeName + "_LIST"; + List queries = new ArrayList<>(); + queries.add("ALTER TABLE " + objectName + " ADD COLUMN " + attributeName + " INTEGER"); + + queries.add("CREATE TABLE " + tableNameList + " (" + "CDO_SOURCE BIGINT NOT NULL, " + + "CDO_VERSION INTEGER NOT NULL, " + "CDO_IDX INTEGER NOT NULL, " + "CDO_VALUE BIGINT)"); + + queries.add("CREATE UNIQUE INDEX " + SQLUtil.createTimebasedIdentifier("PK", H2ProviderConfig.MAX_ID_LENGTH) + + " ON " + tableNameList + " (CDO_SOURCE ASC, CDO_VERSION ASC, CDO_IDX ASC)"); + + queries.add("ALTER TABLE " + tableNameList + " ADD CONSTRAINT " + + SQLUtil.createTimebasedIdentifier("C", H2ProviderConfig.MAX_ID_LENGTH) + + " PRIMARY KEY (CDO_SOURCE, CDO_VERSION, CDO_IDX)"); + + SQLUtil.executeStatements(queries, connection, failmsg); + } + + @Override + public void migrateRenameAttribute(String objectName, String oldAttributeName, String newAttributeName) + throws SpecmateException { + String failmsg = "Migration: Could not rename column " + oldAttributeName + " in table " + objectName + "."; + List queries = new ArrayList<>(); + queries.add( + "ALTER TABLE " + objectName + " ALTER COLUMN " + oldAttributeName + " RENAME TO " + newAttributeName); + queries.add(renameExternalReference(objectName, oldAttributeName, newAttributeName)); + SQLUtil.executeStatements(queries, connection, failmsg); + } + + @Override + public void migrateChangeType(String objectName, String attributeName, IDataType targetType) + throws SpecmateException { + ResultSet result = SQLUtil.getResult( + "SELECT TYPE_NAME, CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '" + + objectName.toUpperCase() + "' AND COLUMN_NAME = '" + attributeName.toUpperCase() + "'", + connection); + String sourceTypeString = null; + int sourceSize = -1; + + String failmsg = "Migration: The data type for attribute " + attributeName + " could not be determined."; + try { + if (result.next()) { + sourceTypeString = result.getString(1); + sourceSize = result.getInt(2); + SQLUtil.closeResult(result); + } else { + throw new SpecmateException(failmsg); + } + } catch (SQLException e) { + throw new SpecmateException(failmsg); + } + + if (sourceTypeString == null) { + throw new SpecmateException(failmsg); + } + + failmsg = "Migration: The attribute " + attributeName + " can not be migrated."; + IDataType sourceType = H2DataType.getFromTypeName(sourceTypeString); + if (sourceType == null) { + throw new SpecmateException(failmsg); + } + + sourceType.setSize(sourceSize); + failmsg = "Migration: Not possible to convert " + attributeName + " from " + sourceType.getTypeName() + " to " + + targetType.getTypeName() + "."; + if (!sourceType.isConversionPossibleTo(targetType)) { + throw new SpecmateException(failmsg); + } + + failmsg = "Migration: The attribute " + attributeName + " in object " + objectName + " could not be migrated."; + String query = "ALTER TABLE " + objectName + " ALTER COLUMN " + attributeName + " " + + targetType.getTypeNameWithSize(); + SQLUtil.executeStatement(query, connection, failmsg); + } +} \ No newline at end of file diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/DataTypeConstants.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/DataTypeConstants.java similarity index 95% rename from bundles/specmate-migration/src/com/specmate/migration/h2/DataTypeConstants.java rename to bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/DataTypeConstants.java index be9b87f76..c5e580a78 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/DataTypeConstants.java +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/DataTypeConstants.java @@ -1,4 +1,4 @@ -package com.specmate.migration.h2; +package specmate.dbprovider.h2; public class DataTypeConstants { public static final String[] TINYINT = new String[] {"TINYINT"}; diff --git a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2DataType.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2DataType.java new file mode 100644 index 000000000..43639bcaa --- /dev/null +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2DataType.java @@ -0,0 +1,162 @@ +package specmate.dbprovider.h2; + +import java.util.Arrays; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Set; + +import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.migration.IDataType; + +public enum H2DataType implements IDataType { + BYTE(DataTypeConstants.TINYINT, false), SHORT(DataTypeConstants.SMALLINT, false), INT(DataTypeConstants.INT, + false), CHAR(DataTypeConstants.CHAR, true), LONG(DataTypeConstants.LONG, + false), FLOAT(DataTypeConstants.FLOAT, false), DOUBLE(DataTypeConstants.DOUBLE, + false), BOOLEAN(DataTypeConstants.BOOLEAN, false), STRING(DataTypeConstants.STRING, true); + + private String typeName; + private Set aliases; + private int size; + private boolean hasSize; + private static Boolean[][] possibleConversions = new Boolean[H2DataType.values().length][H2DataType + .values().length]; + private static HashMap dataTypeLookup = new HashMap<>(); + + H2DataType(String[] typeNames, boolean hasSize) { + this.hasSize = hasSize; + this.size = -1; + this.aliases = new HashSet<>(); + if (typeNames.length > 0) { + typeName = typeNames[0]; + } + for (int i = 1; i < typeNames.length; i++) { + this.aliases.add(typeNames[i]); + } + } + + /* + * (non-Javadoc) + * + * @see com.specmate.migration.h2.IDataType#isConversionPossibleTo(com.specmate. + * migration.h2.H2DataType) + */ + @Override + public boolean isConversionPossibleTo(IDataType target) throws SpecmateException { + if (target.hasSize() && target.getSize() < 0) { + throw new SpecmateException("Size for type " + getTypeName() + " not set."); + } + if (target.hasSize() && this.size > target.getSize()) { + throw new SpecmateException( + "Target size (" + target.getSize() + ") is smaller than source size (" + this.size + ")."); + } + return possibleConversions[this.ordinal()][target.ordinal()]; + } + + @Override + public String getTypeName() { + return typeName; + } + + @Override + public String getTypeNameWithSize() { + String t = this.typeName; + if (hasSize) { + t = t + "(" + size + ")"; + } + return t; + } + + @Override + public void setSize(int size) { + this.size = size; + } + + @Override + public int getSize() { + return this.size; + } + + @Override + public boolean hasSize() { + return this.hasSize; + } + + public static IDataType getFromTypeName(String typeName) { + return dataTypeLookup.get(typeName); + } + + private static void definePossibleConversion(H2DataType from, H2DataType to) { + possibleConversions[from.ordinal()][to.ordinal()] = true; + } + + static { + int size = H2DataType.values().length; + for (int i = 0; i < size; i++) { + for (int j = 0; j < size; j++) { + possibleConversions[i][j] = false; + } + } + + /** + * The following widening type conversions (see + * https://docs.oracle.com/javase/specs/jls/se8/html/jls-5.html#jls-5.1.2) are + * allowed: - byte to short, int, long, float, or double - short to int, long, + * float, or double - char to int, long, float, double, or string - int to long, + * float, or double - long to float or double - float to double + * + * In addition, we convert boolean types (true, false) to string literals + * ("true", "false") and parse the following string literals (case insensitive) + * to the corresponding boolean types: "t", "true", "f", "false" + */ + definePossibleConversion(H2DataType.BYTE, H2DataType.SHORT); + definePossibleConversion(H2DataType.BYTE, H2DataType.INT); + definePossibleConversion(H2DataType.BYTE, H2DataType.LONG); + definePossibleConversion(H2DataType.BYTE, H2DataType.FLOAT); + definePossibleConversion(H2DataType.BYTE, H2DataType.DOUBLE); + definePossibleConversion(H2DataType.SHORT, H2DataType.INT); + definePossibleConversion(H2DataType.SHORT, H2DataType.LONG); + definePossibleConversion(H2DataType.SHORT, H2DataType.FLOAT); + definePossibleConversion(H2DataType.SHORT, H2DataType.DOUBLE); + definePossibleConversion(H2DataType.CHAR, H2DataType.INT); + definePossibleConversion(H2DataType.CHAR, H2DataType.LONG); + definePossibleConversion(H2DataType.CHAR, H2DataType.FLOAT); + definePossibleConversion(H2DataType.CHAR, H2DataType.DOUBLE); + definePossibleConversion(H2DataType.CHAR, H2DataType.STRING); + definePossibleConversion(H2DataType.INT, H2DataType.LONG); + definePossibleConversion(H2DataType.INT, H2DataType.FLOAT); + definePossibleConversion(H2DataType.INT, H2DataType.DOUBLE); + definePossibleConversion(H2DataType.LONG, H2DataType.FLOAT); + definePossibleConversion(H2DataType.LONG, H2DataType.DOUBLE); + definePossibleConversion(H2DataType.FLOAT, H2DataType.DOUBLE); + definePossibleConversion(H2DataType.BOOLEAN, H2DataType.STRING); + definePossibleConversion(H2DataType.STRING, H2DataType.BOOLEAN); + + Arrays.asList(DataTypeConstants.TINYINT).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.BYTE); + }); + Arrays.asList(DataTypeConstants.SMALLINT).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.SHORT); + }); + Arrays.asList(DataTypeConstants.INT).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.INT); + }); + Arrays.asList(DataTypeConstants.CHAR).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.CHAR); + }); + Arrays.asList(DataTypeConstants.LONG).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.LONG); + }); + Arrays.asList(DataTypeConstants.FLOAT).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.FLOAT); + }); + Arrays.asList(DataTypeConstants.DOUBLE).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.DOUBLE); + }); + Arrays.asList(DataTypeConstants.BOOLEAN).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.BOOLEAN); + }); + Arrays.asList(DataTypeConstants.STRING).forEach(typeName -> { + dataTypeLookup.put(typeName, H2DataType.STRING); + }); + } +} diff --git a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2Provider.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2Provider.java index f95a157bb..d19e22644 100644 --- a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2Provider.java +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/H2Provider.java @@ -26,6 +26,8 @@ import com.specmate.dbprovider.api.DBConfigChangedCallback; import com.specmate.dbprovider.api.DBProviderBase; import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; import specmate.dbprovider.h2.config.H2ProviderConfig; @@ -119,6 +121,18 @@ public IStore createStore() { return CDODBUtil.createStore(jmappingStrategy, h2dbAdapter, jdbConnectionProvider); } + @Override + public IAttributeToSQLMapper getAttributeToSQLMapper(String packageName, String sourceVersion, String targetVersion) + throws SpecmateException { + return new AttributeToSQLMapper(getConnection(), packageName, sourceVersion, targetVersion); + } + + @Override + public IObjectToSQLMapper getObjectToSQLMapper(String packageName, String sourceVersion, String targetVersion) + throws SpecmateException { + return new ObjectToSQLMapper(getConnection(), packageName, sourceVersion, targetVersion); + } + private void initiateDBConnection() throws SpecmateException { try { this.connection = DriverManager.getConnection(this.jdbcConnection + ";IFEXISTS=TRUE", "", ""); diff --git a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/ObjectToSQLMapper.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/ObjectToSQLMapper.java new file mode 100644 index 000000000..3b3070aae --- /dev/null +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/ObjectToSQLMapper.java @@ -0,0 +1,42 @@ +package specmate.dbprovider.h2; + +import java.sql.Connection; +import java.util.ArrayList; +import java.util.List; + +import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; +import com.specmate.dbprovider.api.migration.SQLMapper; +import com.specmate.dbprovider.api.migration.SQLUtil; + +import specmate.dbprovider.h2.config.H2ProviderConfig; + +public class ObjectToSQLMapper extends SQLMapper implements IObjectToSQLMapper { + + public ObjectToSQLMapper(Connection connection, String packageName, String sourceVersion, String targetVersion) { + super(connection, packageName, sourceVersion, targetVersion); + } + + @Override + public void newObject(String tableName) throws SpecmateException { + String failmsg = "Migration: Could not add table " + tableName + "."; + List queries = new ArrayList<>(); + + queries.add("CREATE TABLE " + tableName + "(" + "CDO_ID BIGINT NOT NULL, " + "CDO_VERSION INTEGER NOT NULL, " + + "CDO_CREATED BIGINT NOT NULL, " + "CDO_REVISED BIGINT NOT NULL, " + "CDO_RESOURCE BIGINT NOT NULL, " + + "CDO_CONTAINER BIGINT NOT NULL, " + "CDO_FEATURE INTEGER NOT NULL)"); + + queries.add("CREATE UNIQUE INDEX " + SQLUtil.createTimebasedIdentifier("PK", H2ProviderConfig.MAX_ID_LENGTH) + + " ON " + tableName + " (CDO_ID ASC, CDO_VERSION ASC)"); + + queries.add("CREATE INDEX " + SQLUtil.createTimebasedIdentifier("I", H2ProviderConfig.MAX_ID_LENGTH) + " ON " + + tableName + " (CDO_REVISED ASC)"); + + queries.add("ALTER TABLE " + tableName + " ADD CONSTRAINT " + + SQLUtil.createTimebasedIdentifier("C", H2ProviderConfig.MAX_ID_LENGTH) + + " PRIMARY KEY (CDO_ID, CDO_VERSION)"); + + queries.add(insertExternalObjectReference(tableName)); + SQLUtil.executeStatements(queries, connection, failmsg); + } +} diff --git a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/config/H2ProviderConfig.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/config/H2ProviderConfig.java index 7d22b8ff6..5e30db3b9 100644 --- a/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/config/H2ProviderConfig.java +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/config/H2ProviderConfig.java @@ -18,6 +18,7 @@ public class H2ProviderConfig { public static final String PID = "com.specmate.dbprovider.h2.H2ProviderConfig"; public static final String KEY_JDBC_CONNECTION = "h2.jdbcConnection"; + public static final int MAX_ID_LENGTH = 100; private ConfigurationAdmin configurationAdmin; private IConfigService configService; private LogService logService; diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/package-info.java b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/package-info.java similarity index 58% rename from bundles/specmate-migration/src/com/specmate/migration/h2/package-info.java rename to bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/package-info.java index 8440d334d..4d5cbe88e 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/package-info.java +++ b/bundles/specmate-dbprovider-h2/src/specmate/dbprovider/h2/package-info.java @@ -1,2 +1,2 @@ @org.osgi.annotation.versioning.Version("1.0.0") -package com.specmate.migration.h2; +package specmate.dbprovider.h2; diff --git a/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/AttributeToSQLMapper.java b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/AttributeToSQLMapper.java new file mode 100644 index 000000000..0d58a4854 --- /dev/null +++ b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/AttributeToSQLMapper.java @@ -0,0 +1,141 @@ +package specmate.dbprovider.oracle; + +import java.sql.Connection; +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IDataType; +import com.specmate.dbprovider.api.migration.SQLMapper; +import com.specmate.dbprovider.api.migration.SQLUtil; + +import specmate.dbprovider.oracle.config.OracleProviderConfig; + +public class AttributeToSQLMapper extends SQLMapper implements IAttributeToSQLMapper { + + public AttributeToSQLMapper(Connection connection, String packageName, String sourceVersion, String targetVersion) { + super(connection, packageName, sourceVersion, targetVersion); + } + + @Override + public void migrateNewStringAttribute(String objectName, String attributeName, String defaultValue) + throws SpecmateException { + + // TODO I'm not sure if CDO uses VARCHAR or CLOB [1] for strings. 4000 is the + // maximum number of characters supported by oracle. I think that might not be + // enough, e.g. for requirements texts. + // [1] + // https://docs.oracle.com/cd/B28359_01/server.111/b28318/datatype.htm#CNCPT1843 + + String alterString = "ALTER TABLE " + objectName + " ADD " + attributeName + " VARCHAR2(4000)"; + if (hasDefault(defaultValue) && defaultValue.length() > 0) { + alterString += " DEFAULT '" + defaultValue + "'"; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewBooleanAttribute(String objectName, String attributeName, Boolean defaultValue) + throws SpecmateException { + + String alterString = "ALTER TABLE " + objectName + " ADD " + attributeName + " NUMBER"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + (defaultValue == true ? 1 : 0); + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewIntegerAttribute(String objectName, String attributeName, Integer defaultValue) + throws SpecmateException { + + String alterString = "ALTER TABLE " + objectName + " ADD " + attributeName + " NUMBER"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue.intValue(); + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewDoubleAttribute(String objectName, String attributeName, Double defaultValue) + throws SpecmateException { + + String alterString = "ALTER TABLE " + objectName + " ADD " + attributeName + " NUMBER"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewLongAttribute(String objectName, String attributeName, Long defaultValue) + throws SpecmateException { + + String alterString = "ALTER TABLE " + objectName + " ADD " + attributeName + " NUMBER"; + + if (hasDefault(defaultValue)) { + alterString += " DEFAULT " + defaultValue; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewDateAttribute(String objectName, String attributeName, Date defaultValue) + throws SpecmateException { + + String alterString = "ALTER TABLE " + objectName + " ADD " + attributeName + " DATE"; + if (hasDefault(defaultValue)) { + DateFormat df = new SimpleDateFormat("dd.MM.yy"); + alterString += " DEFAULT '" + df.format(defaultValue) + "'"; + } + + executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); + } + + @Override + public void migrateNewReference(String objectName, String attributeName) throws SpecmateException { + String failmsg = "Migration: Could not add column " + attributeName + " to table " + objectName + "."; + String tableNameList = objectName + "_" + attributeName + "_LIST"; + List queries = new ArrayList<>(); + + queries.add("ALTER TABLE " + objectName + " ADD " + attributeName + " NUMBER"); + queries.add("CREATE TABLE " + tableNameList + " (" + "CDO_SOURCE NUMBER NOT NULL, " + + "CDO_VERSION NUMBER NOT NULL, " + "CDO_IDX NUMBER NOT NULL, " + "CDO_VALUE NUMBER)"); + queries.add("CREATE UNIQUE INDEX " + SQLUtil.createTimebasedIdentifier("PK", OracleProviderConfig.MAX_ID_LENGTH) + + " ON " + tableNameList + " (CDO_SOURCE ASC, CDO_VERSION ASC, CDO_IDX ASC)"); + queries.add("ALTER TABLE " + tableNameList + " ADD CONSTRAINT " + + SQLUtil.createTimebasedIdentifier("C", OracleProviderConfig.MAX_ID_LENGTH) + + " PRIMARY KEY (CDO_SOURCE, CDO_VERSION, CDO_IDX)"); + + SQLUtil.executeStatements(queries, connection, failmsg); + } + + @Override + public void migrateRenameAttribute(String objectName, String oldAttributeName, String newAttributeName) + throws SpecmateException { + + String failmsg = "Migration: Could not rename column " + oldAttributeName + " in table " + objectName + "."; + List queries = new ArrayList<>(); + queries.add("ALTER TABLE " + objectName + " RENAME COLUMN " + oldAttributeName + " TO " + newAttributeName); + queries.add(renameExternalReference(objectName, oldAttributeName, newAttributeName)); + SQLUtil.executeStatements(queries, connection, failmsg); + } + + @Override + public void migrateChangeType(String objectName, String attributeName, IDataType targetType) + throws SpecmateException { + throw new SpecmateException("Not yet supported for oracle DB"); + } +} diff --git a/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/ObjectToSQLMapper.java b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/ObjectToSQLMapper.java new file mode 100644 index 000000000..4298c4430 --- /dev/null +++ b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/ObjectToSQLMapper.java @@ -0,0 +1,39 @@ +package specmate.dbprovider.oracle; + +import java.sql.Connection; +import java.util.ArrayList; +import java.util.List; + +import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; +import com.specmate.dbprovider.api.migration.SQLMapper; +import com.specmate.dbprovider.api.migration.SQLUtil; + +import specmate.dbprovider.oracle.config.OracleProviderConfig; + +public class ObjectToSQLMapper extends SQLMapper implements IObjectToSQLMapper { + + public ObjectToSQLMapper(Connection connection, String packageName, String sourceVersion, String targetVersion) { + super(connection, packageName, sourceVersion, targetVersion); + } + + @Override + public void newObject(String tableName) throws SpecmateException { + String failmsg = "Migration: Could not add table " + tableName + "."; + List queries = new ArrayList<>(); + + queries.add("CREATE TABLE " + tableName + "(" + "CDO_ID NUMBER NOT NULL, " + "CDO_VERSION NUMBER NOT NULL, " + + "CDO_CREATED NUMBER NOT NULL, " + "CDO_REVISED NUMBER NOT NULL, " + "CDO_RESOURCE NUMBER NOT NULL, " + + "CDO_CONTAINER NUMBER NOT NULL, " + "CDO_FEATURE NUMBER NOT NULL)"); + queries.add("CREATE UNIQUE INDEX " + SQLUtil.createTimebasedIdentifier("PK", OracleProviderConfig.MAX_ID_LENGTH) + + " ON " + tableName + " (CDO_ID ASC, CDO_VERSION ASC)"); + queries.add("CREATE INDEX " + SQLUtil.createTimebasedIdentifier("I", OracleProviderConfig.MAX_ID_LENGTH) + + " ON " + tableName + " (CDO_REVISED ASC)"); + queries.add("ALTER TABLE " + tableName + " ADD CONSTRAINT " + + SQLUtil.createTimebasedIdentifier("C", OracleProviderConfig.MAX_ID_LENGTH) + + " PRIMARY KEY (CDO_ID, CDO_VERSION)"); + queries.add(insertExternalObjectReference(tableName)); + SQLUtil.executeStatements(queries, connection, failmsg); + } + +} diff --git a/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/OracleProvider.java b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/OracleProvider.java index 9301487b3..882e47e1c 100644 --- a/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/OracleProvider.java +++ b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/OracleProvider.java @@ -25,6 +25,8 @@ import com.specmate.dbprovider.api.DBConfigChangedCallback; import com.specmate.dbprovider.api.DBProviderBase; import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; import oracle.jdbc.pool.OracleDataSource; import specmate.dbprovider.oracle.config.OracleProviderConfig; @@ -119,6 +121,18 @@ public boolean isVirginDB() throws SpecmateException { return false; } + @Override + public IAttributeToSQLMapper getAttributeToSQLMapper(String packageName, String sourceVersion, String targetVersion) + throws SpecmateException { + return new AttributeToSQLMapper(connection, packageName, sourceVersion, targetVersion); + } + + @Override + public IObjectToSQLMapper getObjectToSQLMapper(String packageName, String sourceVersion, String targetVersion) + throws SpecmateException { + return new ObjectToSQLMapper(connection, packageName, sourceVersion, targetVersion); + } + private void initiateDBConnection() throws SpecmateException { try { DriverManager.registerDriver(new oracle.jdbc.OracleDriver()); diff --git a/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/config/OracleProviderConfig.java b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/config/OracleProviderConfig.java index ac56b8b66..a6a312369 100644 --- a/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/config/OracleProviderConfig.java +++ b/bundles/specmate-dbprovider-oracle/src/specmate/dbprovider/oracle/config/OracleProviderConfig.java @@ -16,10 +16,11 @@ @Component public class OracleProviderConfig { public static final String PID = "com.specmate.dbprovider.oracle.OracleProviderConfig"; + public static final int MAX_ID_LENGTH = 30; private static final String DB_PREFIX = "oracle."; - public static final String KEY_JDBC_CONNECTION = DB_PREFIX+ "jdbcConnection"; - public static final String KEY_USERNAME = DB_PREFIX + "username"; - public static final String KEY_PASSWORD = DB_PREFIX + "password"; + public static final String KEY_JDBC_CONNECTION = DB_PREFIX + "jdbcConnection"; + public static final String KEY_USERNAME = DB_PREFIX + "username"; + public static final String KEY_PASSWORD = DB_PREFIX + "password"; private ConfigurationAdmin configurationAdmin; private IConfigService configService; private LogService logService; diff --git a/bundles/specmate-emfrest/bnd.bnd b/bundles/specmate-emfrest/bnd.bnd index d4bdd0fd1..cb879ffdd 100644 --- a/bundles/specmate-emfrest/bnd.bnd +++ b/bundles/specmate-emfrest/bnd.bnd @@ -53,4 +53,5 @@ Export-Package: \ com.specmate.emfrest.crud,\ com.specmate.emfrest.search,\ com.specmate.emfrest.config,\ - com.specmate.emfrest.authentication \ No newline at end of file + com.specmate.emfrest.authentication,\ + com.specmate.emfrest.history \ No newline at end of file diff --git a/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRecursiveRestService.java b/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRecursiveRestService.java deleted file mode 100644 index 0c215c47d..000000000 --- a/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRecursiveRestService.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.specmate.emfrest.history; - -import javax.ws.rs.core.MultivaluedMap; -import javax.ws.rs.core.Response; - -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.resource.Resource; -import org.osgi.service.component.annotations.Component; -import org.osgi.service.component.annotations.Reference; - -import com.specmate.common.SpecmateException; -import com.specmate.emfrest.api.IRestService; -import com.specmate.emfrest.api.RestServiceBase; -import com.specmate.persistency.IHistoryProvider; -import com.specmate.rest.RestResult; - -@Component(immediate = true, service = IRestService.class) -public class HistoryRecursiveRestService extends RestServiceBase { - - private IHistoryProvider historyProvider; - - @Override - public String getServiceName() { - return "historyRecursive"; - } - - @Override - public boolean canGet(Object object) { - return object instanceof EObject && !(object instanceof Resource); - } - - @Override - public RestResult get(Object object, MultivaluedMap queryParams, String token) - throws SpecmateException { - return new RestResult<>(Response.Status.OK, historyProvider.getHistoryRecursive((EObject) object)); - } - - @Reference - public void setHistoryProvider(IHistoryProvider historyProvider) { - this.historyProvider = historyProvider; - } - -} diff --git a/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRestService.java b/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRestService.java index 189ce6535..b9e4ec1ee 100644 --- a/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRestService.java +++ b/bundles/specmate-emfrest/src/com/specmate/emfrest/history/HistoryRestService.java @@ -16,6 +16,10 @@ @Component(immediate = true, service = IRestService.class) public class HistoryRestService extends RestServiceBase { + private final String HPARAM = "type"; + public static final String HSINGLE = "single"; + public static final String HCONTAINER = "container"; + public static final String HRECURSIVE = "recursive"; private IHistoryProvider historyProvider; @@ -32,7 +36,24 @@ public boolean canGet(Object object) { @Override public RestResult get(Object object, MultivaluedMap queryParams, String token) throws SpecmateException { - return new RestResult<>(Response.Status.OK, historyProvider.getHistory((EObject) object)); + String type = queryParams.getFirst(HPARAM); + if (type == null) { + return new RestResult<>(Response.Status.BAD_REQUEST); + } + + if (type.equals(HSINGLE)) { + return new RestResult<>(Response.Status.OK, historyProvider.getHistory((EObject) object)); + } + + if (type.equals(HCONTAINER)) { + return new RestResult<>(Response.Status.OK, historyProvider.getContainerHistory((EObject) object)); + } + + if (type.equals(HRECURSIVE)) { + return new RestResult<>(Response.Status.OK, historyProvider.getRecursiveHistory((EObject) object)); + } + + return new RestResult<>(Response.Status.BAD_REQUEST); } @Reference diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/packageinfo b/bundles/specmate-emfrest/src/com/specmate/emfrest/history/packageinfo similarity index 100% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/packageinfo rename to bundles/specmate-emfrest/src/com/specmate/emfrest/history/packageinfo diff --git a/bundles/specmate-integration-test/bnd.bnd b/bundles/specmate-integration-test/bnd.bnd index c9e88f2eb..102a26348 100644 --- a/bundles/specmate-integration-test/bnd.bnd +++ b/bundles/specmate-integration-test/bnd.bnd @@ -36,7 +36,6 @@ Test-Cases: \ specmate-logging-slf4j;version=latest,\ specmate-logging-slf4j-julbridge;version=latest,\ specmate-search;version=latest,\ - specmate-std-env;version=latest,\ specmate-testspecification;version=latest,\ specmate-ui-core;version=latest,\ specmate-migration;version=latest,\ @@ -52,7 +51,7 @@ Test-Cases: \ -runfw: org.eclipse.osgi;version='[3.10.2.v20150203-1939,3.10.2.v20150203-1939]' -runsystempackages: \ sun.reflect --runvm: -ea +-runvm: -ea, -Djdk.crypto.KeyAgreement.legacyKDF=true Bundle-Version: 0.0.0.${tstamp} -runrequires: \ @@ -236,7 +235,8 @@ Bundle-Version: 0.0.0.${tstamp} specmate-cdo-server;version=snapshot,\ org.apache.commons.lang3;version='[3.3.2,3.3.3)',\ org.eclipse.emf.cdo.server.db;version='[4.4.0,4.4.1)',\ - specmate-rest;version=snapshot + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot -runproperties: \ jetty.http.port=8088,\ diff --git a/bundles/specmate-integration-test/src/com/specmate/test/integration/HistoryTest.java b/bundles/specmate-integration-test/src/com/specmate/test/integration/HistoryTest.java index 754d35c4c..bb31b5820 100644 --- a/bundles/specmate-integration-test/src/com/specmate/test/integration/HistoryTest.java +++ b/bundles/specmate-integration-test/src/com/specmate/test/integration/HistoryTest.java @@ -9,32 +9,26 @@ import org.junit.Assert; import org.junit.Test; +import com.specmate.emfrest.history.HistoryRestService; import com.specmate.model.base.BasePackage; import com.specmate.model.history.HistoryPackage; import com.specmate.rest.RestResult; public class HistoryTest extends EmfRestTest { - public HistoryTest() throws Exception {} - - private String historyUrl(String... segments) { - return buildUrl("history", segments); + public HistoryTest() throws Exception { } - - private String historyRecursiveUrl(String... segments) { - return buildUrl("historyRecursive", segments); - } - - private JSONArray getEntries(boolean recursive, String... segments) { - String historyUrl = recursive ? historyRecursiveUrl(segments) : historyUrl(segments); - RestResult result = restClient.get(historyUrl); + + private JSONArray getEntries(String type, String... segments) { + String historyUrl = buildUrl("history", segments); + RestResult result = restClient.get(historyUrl, "type", type); JSONObject history = result.getPayload(); return history.getJSONArray(HistoryPackage.Literals.HISTORY__ENTRIES.getName()); } - + /** - * Tests that the history entries are returned is reversed creation order - * and expected state (creation, modification). + * Tests that the history entries are returned is reversed creation order and + * expected state (creation, modification). */ @Test public void testHistoryIsInSequence() { @@ -42,42 +36,43 @@ public void testHistoryIsInSequence() { String requirementId = getId(requirement); String newName = "changedName"; int numChangeNames = 11; - for(int i = 0; i < numChangeNames; i++) { + for (int i = 0; i < numChangeNames; i++) { requirement.put(BasePackage.Literals.INAMED__NAME.getName(), newName + i); updateObject(requirement, requirementId); } - - checkSequence(getEntries(false, requirementId), newName, numChangeNames); - checkSequence(getEntries(true, requirementId), newName, numChangeNames); + + checkSequence(getEntries(HistoryRestService.HSINGLE, requirementId), newName, numChangeNames); + checkSequence(getEntries(HistoryRestService.HRECURSIVE, requirementId), newName, numChangeNames); } - + private void checkSequence(JSONArray entries, String newName, int numChangeNames) { assertEquals(numChangeNames + 1, entries.length()); - for(int i = 0, j = numChangeNames - 1; i < numChangeNames; i++, j--) { + for (int i = 0, j = numChangeNames - 1; i < numChangeNames; i++, j--) { JSONObject entry = entries.getJSONObject(i); assertTrue(entry.getString(HistoryPackage.Literals.HISTORY_ENTRY__USER.getName()).length() > 0); JSONArray changes = entry.getJSONArray(HistoryPackage.Literals.HISTORY_ENTRY__CHANGES.getName()); assertEquals(1, changes.length()); JSONObject change = changes.getJSONObject(0); assertEquals(newName + j, change.getString(HistoryPackage.Literals.CHANGE__NEW_VALUE.getName())); - assertEquals(BasePackage.Literals.INAMED__NAME.getName(), change.getString(HistoryPackage.Literals.CHANGE__FEATURE.getName())); + assertEquals(BasePackage.Literals.INAMED__NAME.getName(), + change.getString(HistoryPackage.Literals.CHANGE__FEATURE.getName())); assertFalse(change.getBoolean(HistoryPackage.Literals.CHANGE__IS_CREATE.getName())); assertFalse(change.getBoolean(HistoryPackage.Literals.CHANGE__IS_DELETE.getName())); } - + JSONObject creation = entries.getJSONObject(numChangeNames); - assertTrue(creation.getString(HistoryPackage.Literals.HISTORY_ENTRY__USER.getName()).length() > 0); + assertTrue(creation.getString(HistoryPackage.Literals.HISTORY_ENTRY__USER.getName()).length() > 0); JSONArray changes = creation.getJSONArray(HistoryPackage.Literals.HISTORY_ENTRY__CHANGES.getName()); - for(int i = 0; i < changes.length(); i++) { + for (int i = 0; i < changes.length(); i++) { JSONObject change = changes.getJSONObject(i); assertTrue(change.getBoolean(HistoryPackage.Literals.CHANGE__IS_CREATE.getName())); assertFalse(change.getBoolean(HistoryPackage.Literals.CHANGE__IS_DELETE.getName())); } } - + /** * Tests that the object hierarchy is traversed to get history elements by - * asserting the number of history entries for created and deleted objects. + * asserting the number of history entries for created and deleted objects. */ @Test public void testRecursiveHistory() { @@ -106,16 +101,18 @@ public void testRecursiveHistory() { // Change 9 JSONObject connection = postCEGConnection(retrievedCegNode1, retrievedCegNode2, false, requirementId, cegId); String connectionId = getId(connection); - - JSONArray entries = getEntries(true, requirementId); + + JSONArray entries = getEntries(HistoryRestService.HRECURSIVE, requirementId); assertEquals(9, entries.length()); - - // Change 9: since we deleted an object, is does not appear in history anymore (-1), but we catch the deletion with - // the change event on the containment (+1). As a result, the number of history entries does not change when deleting + + // Change 9: since we deleted an object, is does not appear in history anymore + // (-1), but we catch the deletion with + // the change event on the containment (+1). As a result, the number of history + // entries does not change when deleting // an object. deleteObject(requirementId, cegId, connectionId); - - entries = getEntries(true, requirementId); + + entries = getEntries(HistoryRestService.HRECURSIVE, requirementId); assertEquals(9, entries.length()); JSONObject entry = entries.getJSONObject(0); JSONArray changes = entry.getJSONArray(HistoryPackage.Literals.HISTORY_ENTRY__CHANGES.getName()); diff --git a/bundles/specmate-migration-test/bnd.bnd b/bundles/specmate-migration-test/bnd.bnd index db7a400c5..7d19d051d 100644 --- a/bundles/specmate-migration-test/bnd.bnd +++ b/bundles/specmate-migration-test/bnd.bnd @@ -4,7 +4,8 @@ Test-Cases: \ com.specmate.migration.test.AddSeveralAttributesTest,\ com.specmate.migration.test.AddObjectTest,\ com.specmate.migration.test.RenamedAttributeTest,\ - com.specmate.migration.test.ChangedTypesTest + com.specmate.migration.test.ChangedTypesTest,\ + com.specmate.migration.test.OnlyMetaChangeTest -buildpath: \ org.eclipse.emf,\ org.eclipse.emf.cdo,\ @@ -42,11 +43,11 @@ Test-Cases: \ specmate-persistency-api;version=latest,\ specmate-persistency-cdo;version=latest,\ specmate-search;version=latest,\ - specmate-std-env;version=latest,\ specmate-testspecification;version=latest,\ specmate-ui-core;version=latest,\ - specmate-dbprovider-h2;version=latest,\ - specmate-cdo-server;version=latest + specmate-cdo-server;version=latest,\ + specmate-dbprovider-api;version=latest,\ + specmate-dbprovider-h2;version=latest -runfw: org.eclipse.osgi;version='[3.10.2.v20150203-1939,3.10.2.v20150203-1939]' -runee: JavaSE-1.8 -runrequires: \ @@ -157,7 +158,7 @@ Test-Cases: \ specmate-cdo-server;version=snapshot,\ org.eclipse.emf.cdo.server.db;version='[4.4.0,4.4.1)',\ specmate-rest;version=snapshot --runvm: -ea +-runvm: -ea, -Djdk.crypto.KeyAgreement.legacyKDF=true -runproperties: \ jetty.http.port=8088,\ osgi.console=,\ diff --git a/bundles/specmate-migration-test/models/attributeadded.ecore b/bundles/specmate-migration-test/models/attributeadded.ecore index 4cea950fc..d12c2caaf 100644 --- a/bundles/specmate-migration-test/models/attributeadded.ecore +++ b/bundles/specmate-migration-test/models/attributeadded.ecore @@ -26,7 +26,7 @@ - + diff --git a/bundles/specmate-migration-test/models/attributerenamed.ecore b/bundles/specmate-migration-test/models/attributerenamed.ecore index 7c4734279..9b8330a9a 100644 --- a/bundles/specmate-migration-test/models/attributerenamed.ecore +++ b/bundles/specmate-migration-test/models/attributerenamed.ecore @@ -21,7 +21,7 @@ - + diff --git a/bundles/specmate-migration-test/models/baseline.ecore b/bundles/specmate-migration-test/models/baseline.ecore index cec8bd62c..93665f033 100644 --- a/bundles/specmate-migration-test/models/baseline.ecore +++ b/bundles/specmate-migration-test/models/baseline.ecore @@ -21,7 +21,7 @@ - + diff --git a/bundles/specmate-migration-test/models/changedtypes.ecore b/bundles/specmate-migration-test/models/changedtypes.ecore index 267fe3eda..067bca6d6 100644 --- a/bundles/specmate-migration-test/models/changedtypes.ecore +++ b/bundles/specmate-migration-test/models/changedtypes.ecore @@ -21,7 +21,7 @@ - + diff --git a/bundles/specmate-migration-test/models/objectadded.ecore b/bundles/specmate-migration-test/models/objectadded.ecore index 966d741b7..d916b74cd 100644 --- a/bundles/specmate-migration-test/models/objectadded.ecore +++ b/bundles/specmate-migration-test/models/objectadded.ecore @@ -25,7 +25,7 @@ - + diff --git a/bundles/specmate-migration-test/models/onlymetachange.ecore b/bundles/specmate-migration-test/models/onlymetachange.ecore new file mode 100644 index 000000000..9ed56c698 --- /dev/null +++ b/bundles/specmate-migration-test/models/onlymetachange.ecore @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bundles/specmate-migration-test/models/onlymetachange.genmodel b/bundles/specmate-migration-test/models/onlymetachange.genmodel new file mode 100644 index 000000000..d7cb54105 --- /dev/null +++ b/bundles/specmate-migration-test/models/onlymetachange.genmodel @@ -0,0 +1,75 @@ + + + onlymetachange.ecore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bundles/specmate-migration-test/models/severalattributesadded.ecore b/bundles/specmate-migration-test/models/severalattributesadded.ecore index e2511b996..7923f6d4d 100644 --- a/bundles/specmate-migration-test/models/severalattributesadded.ecore +++ b/bundles/specmate-migration-test/models/severalattributesadded.ecore @@ -31,7 +31,7 @@ - + diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/ChangedTypesTest.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/ChangedTypesTest.java index e73ea43fd..cace0365c 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/ChangedTypesTest.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/ChangedTypesTest.java @@ -2,13 +2,13 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.resource.Resource; -import com.specmate.migration.test.changedtypes.testmodel.artefact.File; +import com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch; import com.specmate.migration.test.changedtypes.testmodel.base.BasePackage; import com.specmate.migration.test.changedtypes.testmodel.base.Folder; import com.specmate.model.support.util.SpecmateEcoreUtil; @@ -19,70 +19,72 @@ public class ChangedTypesTest extends MigrationTestBase { public ChangedTypesTest() throws Exception { super("changetypes", BasePackage.class.getName()); } - - protected void checkMigrationPostconditions() throws Exception { + + @Override + protected void checkMigrationPostconditions() throws Exception { ITransaction transaction = persistency.openTransaction(); Resource resource = transaction.getResource(); EObject root = SpecmateEcoreUtil.getEObjectWithId("root", resource.getContents()); assertNotNull(root); - + assertTrue(root instanceof Folder); Folder rootFolder = (Folder) root; - - EObject file = SpecmateEcoreUtil.getEObjectWithId("f0", rootFolder.eContents()); - assertNotNull(file); - assertTrue(file instanceof File); - File f0 = (File) file; - + + EObject obj = SpecmateEcoreUtil.getEObjectWithId("s0", rootFolder.eContents()); + assertNotNull(obj); + assertTrue(obj instanceof Sketch); + Sketch s0 = (Sketch) obj; + /* - * Contrary to the documentation [1], variables of type byte are *not* stored as - * TINYINT, but as SMALLINT. Hence we omit here the test for the - * conversion of type byte to X. - * + * Contrary to the documentation [1], variables of type byte are *not* stored as + * TINYINT, but as SMALLINT. Hence we omit here the test for the conversion of + * type byte to X. + * * [1] http://www.h2database.com/html/datatypes.html#tinyint_type */ - + /* - * The following assertions check whether the conversion from X to Y has been performed successfully. Note that - * these are all positive tests. Negative test, i.e. tests that cover failure cases, would require a new - * test model with invalid conversions and are currently not implemented. + * The following assertions check whether the conversion from X to Y has been + * performed successfully. Note that these are all positive tests. Negative + * test, i.e. tests that cover failure cases, would require a new test model + * with invalid conversions and are currently not implemented. */ - - // Short to int, long, float and long conversion. - assertEquals(3, f0.getShortVar1()); - assertEquals(3L, f0.getShortVar2()); - assertEquals(3.0f, f0.getShortVar3(), 0.0); - assertEquals(3.0, f0.getShortVar4(), 0.0); - + + // Short to int, long, float and long conversion. + assertEquals(3, s0.getShortVar1()); + assertEquals(3L, s0.getShortVar2()); + assertEquals(3.0f, s0.getShortVar3(), 0.0); + assertEquals(3.0, s0.getShortVar4(), 0.0); + // Char to int, long, float, long and string conversion - assertEquals(3, f0.getCharVar1()); - assertEquals(3L, f0.getCharVar2()); - assertEquals(3.0f, f0.getCharVar3(), 0.0); - assertEquals(3.0, f0.getCharVar4(), 0.0); - assertEquals("3", f0.getCharVar5()); - + assertEquals(3, s0.getCharVar1()); + assertEquals(3L, s0.getCharVar2()); + assertEquals(3.0f, s0.getCharVar3(), 0.0); + assertEquals(3.0, s0.getCharVar4(), 0.0); + assertEquals("3", s0.getCharVar5()); + // Int to long, float and double conversion - assertEquals(3L, f0.getIntVar1()); - assertEquals(3.0f, f0.getIntVar2(), 0.0); - assertEquals(3.0, f0.getIntVar3(), 0.0); - + assertEquals(3L, s0.getIntVar1()); + assertEquals(3.0f, s0.getIntVar2(), 0.0); + assertEquals(3.0, s0.getIntVar3(), 0.0); + // Long to float and double conversion - assertEquals(3.0f, f0.getLongVar1(), 0.0); - assertEquals(3.0, f0.getLongVar2(), 0.0); - + assertEquals(3.0f, s0.getLongVar1(), 0.0); + assertEquals(3.0, s0.getLongVar2(), 0.0); + // Float to double conversion - assertEquals(3.14, f0.getFloatVar1(), 0.0001); - - // Boolean to String conversion - assertEquals("TRUE", f0.getBooleanVar1()); - + assertEquals(3.14, s0.getFloatVar1(), 0.0001); + + // Boolean to String conversion + assertEquals("TRUE", s0.getBooleanVar1()); + // String to boolean conversion - assertTrue(f0.isStringVar1()); - assertTrue(f0.isStringVar2()); - assertTrue(f0.isStringVar3()); - assertTrue(f0.isStringVar4()); - assertFalse(f0.isStringVar5()); - + assertTrue(s0.isStringVar1()); + assertTrue(s0.isStringVar2()); + assertTrue(s0.isStringVar3()); + assertTrue(s0.isStringVar4()); + assertFalse(s0.isStringVar5()); + transaction.commit(); } } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/MigrationTestBase.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/MigrationTestBase.java index 87a36d595..a5bbb0160 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/MigrationTestBase.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/MigrationTestBase.java @@ -23,7 +23,7 @@ import com.specmate.migration.api.IMigratorService; import com.specmate.migration.test.baseline.testmodel.artefact.ArtefactFactory; import com.specmate.migration.test.baseline.testmodel.artefact.Diagram; -import com.specmate.migration.test.baseline.testmodel.artefact.File; +import com.specmate.migration.test.baseline.testmodel.artefact.Sketch; import com.specmate.migration.test.baseline.testmodel.base.BaseFactory; import com.specmate.migration.test.baseline.testmodel.base.BasePackage; import com.specmate.migration.test.support.TestMigratorImpl; @@ -261,60 +261,60 @@ private void loadBaselineTestdata(com.specmate.migration.test.baseline.testmodel d0.setId("d0"); d0.setTested(true); - File f0 = ArtefactFactory.eINSTANCE.createFile(); - f0.setId("f0"); - f0.setTested(false); - f0.setBooleanVar1(true); - f0.setByteVar1((byte) 3); - f0.setCharVar1('3'); - f0.setDoubleVar1(3.14); - f0.setFloatVar1(3.14f); - f0.setIntVar1(3); - f0.setLongVar1(3L); - f0.setShortVar1((short) 3); - f0.setStringVar1("t"); - - f0.setBooleanVar2(true); - f0.setByteVar2((byte) 3); - f0.setCharVar2('3'); - f0.setDoubleVar2(3.14); - f0.setFloatVar2(3.14f); - f0.setIntVar2(3); - f0.setLongVar2(3L); - f0.setShortVar2((short) 3); - f0.setStringVar2("true"); - - f0.setBooleanVar3(true); - f0.setByteVar3((byte) 3); - f0.setCharVar3('3'); - f0.setDoubleVar3(3.14); - f0.setFloatVar3(3.14f); - f0.setIntVar3(3); - f0.setLongVar3(3L); - f0.setShortVar3((short) 3); - f0.setStringVar3("T"); - - f0.setBooleanVar4(true); - f0.setByteVar4((byte) 3); - f0.setCharVar4('3'); - f0.setDoubleVar4(3.14); - f0.setFloatVar4(3.14f); - f0.setIntVar4(3); - f0.setLongVar4(3L); - f0.setShortVar4((short) 3); - f0.setStringVar4("TRUE"); - - f0.setBooleanVar5(true); - f0.setByteVar5((byte) 3); - f0.setCharVar5('3'); - f0.setDoubleVar5(3.14); - f0.setFloatVar5(3.14f); - f0.setIntVar5(3); - f0.setLongVar5(3L); - f0.setShortVar5((short) 3); - f0.setStringVar5("false"); + Sketch s0 = ArtefactFactory.eINSTANCE.createSketch(); + s0.setId("s0"); + s0.setTested(false); + s0.setBooleanVar1(true); + s0.setByteVar1((byte) 3); + s0.setCharVar1('3'); + s0.setDoubleVar1(3.14); + s0.setFloatVar1(3.14f); + s0.setIntVar1(3); + s0.setLongVar1(3L); + s0.setShortVar1((short) 3); + s0.setStringVar1("t"); + + s0.setBooleanVar2(true); + s0.setByteVar2((byte) 3); + s0.setCharVar2('3'); + s0.setDoubleVar2(3.14); + s0.setFloatVar2(3.14f); + s0.setIntVar2(3); + s0.setLongVar2(3L); + s0.setShortVar2((short) 3); + s0.setStringVar2("true"); + + s0.setBooleanVar3(true); + s0.setByteVar3((byte) 3); + s0.setCharVar3('3'); + s0.setDoubleVar3(3.14); + s0.setFloatVar3(3.14f); + s0.setIntVar3(3); + s0.setLongVar3(3L); + s0.setShortVar3((short) 3); + s0.setStringVar3("T"); + + s0.setBooleanVar4(true); + s0.setByteVar4((byte) 3); + s0.setCharVar4('3'); + s0.setDoubleVar4(3.14); + s0.setFloatVar4(3.14f); + s0.setIntVar4(3); + s0.setLongVar4(3L); + s0.setShortVar4((short) 3); + s0.setStringVar4("TRUE"); + + s0.setBooleanVar5(true); + s0.setByteVar5((byte) 3); + s0.setCharVar5('3'); + s0.setDoubleVar5(3.14); + s0.setFloatVar5(3.14f); + s0.setIntVar5(3); + s0.setLongVar5(3L); + s0.setShortVar5((short) 3); + s0.setStringVar5("false"); root.getContents().add(d0); - root.getContents().add(f0); + root.getContents().add(s0); } } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/OnlyMetaChangeTest.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/OnlyMetaChangeTest.java new file mode 100644 index 000000000..5649ed32f --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/OnlyMetaChangeTest.java @@ -0,0 +1,36 @@ +package com.specmate.migration.test; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.resource.Resource; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram; +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; +import com.specmate.migration.test.onlymetachange.testmodel.base.Folder; +import com.specmate.model.support.util.SpecmateEcoreUtil; +import com.specmate.persistency.ITransaction; + +public class OnlyMetaChangeTest extends MigrationTestBase { + + public OnlyMetaChangeTest() throws Exception { + super("onlymetachangetest", BasePackage.class.getName()); + } + + @Override + protected void checkMigrationPostconditions() throws Exception { + ITransaction transaction = persistency.openTransaction(); + Resource resource = transaction.getResource(); + EObject root = SpecmateEcoreUtil.getEObjectWithId("root", resource.getContents()); + assertNotNull(root); + + assertTrue(root instanceof Folder); + Folder rootFolder = (Folder) root; + + EObject diagram = SpecmateEcoreUtil.getEObjectWithId("d0", rootFolder.eContents()); + assertNotNull(diagram); + assertTrue(diagram instanceof Diagram); + } + +} diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactFactory.java index afb1622af..ebbc80a93 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactFactory.java @@ -31,13 +31,13 @@ public interface ArtefactFactory extends EFactory { Diagram createDiagram(); /** - * Returns a new object of class 'File'. + * Returns a new object of class 'Sketch'. * * - * @return a new object of class 'File'. + * @return a new object of class 'Sketch'. * @generated */ - File createFile(); + Sketch createSketch(); /** * Returns the package supported by this factory. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactPackage.java index 69c4e7c67..6bd9ea40f 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactPackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/ArtefactPackage.java @@ -3,6 +3,7 @@ package com.specmate.migration.test.attributeadded.testmodel.artefact; import com.specmate.migration.test.attributeadded.testmodel.base.BasePackage; + import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; @@ -129,16 +130,15 @@ public interface ArtefactPackage extends EPackage { */ int DIAGRAM_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; - /** - * The meta object id for the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl File}' class. + * The meta object id for the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - int FILE = 1; + int SKETCH = 1; /** * The feature id for the 'Tested' attribute. @@ -147,7 +147,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__TESTED = BasePackage.IMODIFIABLE__TESTED; + int SKETCH__TESTED = BasePackage.IMODIFIABLE__TESTED; /** * The feature id for the 'Name' attribute. @@ -156,7 +156,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__NAME = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + int SKETCH__NAME = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; /** * The feature id for the 'Id' attribute. @@ -165,7 +165,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; /** * The feature id for the 'Contents' containment reference list. @@ -174,7 +174,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; /** * The feature id for the 'Byte Var1' attribute. @@ -183,7 +183,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; /** * The feature id for the 'Byte Var2' attribute. @@ -192,7 +192,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; /** * The feature id for the 'Byte Var3' attribute. @@ -201,7 +201,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; /** * The feature id for the 'Byte Var4' attribute. @@ -210,7 +210,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; /** * The feature id for the 'Byte Var5' attribute. @@ -219,7 +219,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; /** * The feature id for the 'Short Var1' attribute. @@ -228,7 +228,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; /** * The feature id for the 'Short Var2' attribute. @@ -237,7 +237,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; /** * The feature id for the 'Short Var3' attribute. @@ -246,7 +246,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; /** * The feature id for the 'Short Var4' attribute. @@ -255,7 +255,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; /** * The feature id for the 'Short Var5' attribute. @@ -264,7 +264,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; /** * The feature id for the 'Int Var1' attribute. @@ -273,7 +273,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; /** * The feature id for the 'Int Var2' attribute. @@ -282,7 +282,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; /** * The feature id for the 'Int Var3' attribute. @@ -291,7 +291,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; /** * The feature id for the 'Int Var4' attribute. @@ -300,7 +300,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; /** * The feature id for the 'Int Var5' attribute. @@ -309,7 +309,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; /** * The feature id for the 'Char Var1' attribute. @@ -318,7 +318,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; /** * The feature id for the 'Char Var2' attribute. @@ -327,7 +327,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; /** * The feature id for the 'Char Var3' attribute. @@ -336,7 +336,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; /** * The feature id for the 'Char Var4' attribute. @@ -345,7 +345,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; /** * The feature id for the 'Char Var5' attribute. @@ -354,7 +354,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; /** * The feature id for the 'Long Var1' attribute. @@ -363,7 +363,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; /** * The feature id for the 'Long Var2' attribute. @@ -372,7 +372,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; /** * The feature id for the 'Long Var3' attribute. @@ -381,7 +381,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; /** * The feature id for the 'Long Var4' attribute. @@ -390,7 +390,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; /** * The feature id for the 'Long Var5' attribute. @@ -399,7 +399,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; /** * The feature id for the 'Float Var1' attribute. @@ -408,7 +408,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; /** * The feature id for the 'Float Var2' attribute. @@ -417,7 +417,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; /** * The feature id for the 'Float Var3' attribute. @@ -426,7 +426,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; /** * The feature id for the 'Float Var4' attribute. @@ -435,7 +435,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; /** * The feature id for the 'Float Var5' attribute. @@ -444,7 +444,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; /** * The feature id for the 'Double Var1' attribute. @@ -453,7 +453,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; /** * The feature id for the 'Double Var2' attribute. @@ -462,7 +462,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; /** * The feature id for the 'Double Var3' attribute. @@ -471,7 +471,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; /** * The feature id for the 'Double Var4' attribute. @@ -480,7 +480,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; /** * The feature id for the 'Double Var5' attribute. @@ -489,7 +489,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; /** * The feature id for the 'Boolean Var1' attribute. @@ -498,7 +498,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; /** * The feature id for the 'Boolean Var2' attribute. @@ -507,7 +507,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; /** * The feature id for the 'Boolean Var3' attribute. @@ -516,7 +516,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; /** * The feature id for the 'Boolean Var4' attribute. @@ -525,7 +525,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; /** * The feature id for the 'Boolean Var5' attribute. @@ -534,7 +534,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; /** * The feature id for the 'String Var1' attribute. @@ -543,7 +543,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; /** * The feature id for the 'String Var2' attribute. @@ -552,7 +552,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; /** * The feature id for the 'String Var3' attribute. @@ -561,7 +561,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; /** * The feature id for the 'String Var4' attribute. @@ -570,7 +570,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; /** * The feature id for the 'String Var5' attribute. @@ -579,25 +579,25 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; /** - * The number of structural features of the 'File' class. + * The number of structural features of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 48; + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 48; /** - * The number of operations of the 'File' class. + * The number of operations of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** @@ -622,509 +622,509 @@ public interface ArtefactPackage extends EPackage { EAttribute getDiagram_Created(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File File}'. + * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch Sketch}'. * * - * @return the meta object for class 'File'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch * @generated */ - EClass getFile(); + EClass getSketch(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar1 Byte Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. * * * @return the meta object for the attribute 'Byte Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar1(); + EAttribute getSketch_ByteVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar2 Byte Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. * * * @return the meta object for the attribute 'Byte Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar2(); + EAttribute getSketch_ByteVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar3 Byte Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. * * * @return the meta object for the attribute 'Byte Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar3(); + EAttribute getSketch_ByteVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar4 Byte Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. * * * @return the meta object for the attribute 'Byte Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar4(); + EAttribute getSketch_ByteVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar5 Byte Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. * * * @return the meta object for the attribute 'Byte Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar5(); + EAttribute getSketch_ByteVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar1 Short Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. * * * @return the meta object for the attribute 'Short Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar1(); + EAttribute getSketch_ShortVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar2 Short Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. * * * @return the meta object for the attribute 'Short Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar2(); + EAttribute getSketch_ShortVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar3 Short Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. * * * @return the meta object for the attribute 'Short Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar3(); + EAttribute getSketch_ShortVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar4 Short Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. * * * @return the meta object for the attribute 'Short Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar4(); + EAttribute getSketch_ShortVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar5 Short Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. * * * @return the meta object for the attribute 'Short Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar5(); + EAttribute getSketch_ShortVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar1 Int Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. * * * @return the meta object for the attribute 'Int Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar1(); + EAttribute getSketch_IntVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar2 Int Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. * * * @return the meta object for the attribute 'Int Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar2(); + EAttribute getSketch_IntVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar3 Int Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. * * * @return the meta object for the attribute 'Int Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar3(); + EAttribute getSketch_IntVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar4 Int Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. * * * @return the meta object for the attribute 'Int Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar4(); + EAttribute getSketch_IntVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar5 Int Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. * * * @return the meta object for the attribute 'Int Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar5(); + EAttribute getSketch_IntVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar1 Char Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. * * * @return the meta object for the attribute 'Char Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar1(); + EAttribute getSketch_CharVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar2 Char Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. * * * @return the meta object for the attribute 'Char Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar2(); + EAttribute getSketch_CharVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar3 Char Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. * * * @return the meta object for the attribute 'Char Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar3(); + EAttribute getSketch_CharVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar4 Char Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. * * * @return the meta object for the attribute 'Char Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar4(); + EAttribute getSketch_CharVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar5 Char Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. * * * @return the meta object for the attribute 'Char Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar5(); + EAttribute getSketch_CharVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar1 Long Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. * * * @return the meta object for the attribute 'Long Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar1(); + EAttribute getSketch_LongVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar2 Long Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. * * * @return the meta object for the attribute 'Long Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar2(); + EAttribute getSketch_LongVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar3 Long Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. * * * @return the meta object for the attribute 'Long Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar3(); + EAttribute getSketch_LongVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar4 Long Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. * * * @return the meta object for the attribute 'Long Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar4(); + EAttribute getSketch_LongVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar5 Long Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. * * * @return the meta object for the attribute 'Long Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar5(); + EAttribute getSketch_LongVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar1 Float Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. * * * @return the meta object for the attribute 'Float Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar1(); + EAttribute getSketch_FloatVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar2 Float Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. * * * @return the meta object for the attribute 'Float Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar2(); + EAttribute getSketch_FloatVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar3 Float Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. * * * @return the meta object for the attribute 'Float Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar3(); + EAttribute getSketch_FloatVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar4 Float Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. * * * @return the meta object for the attribute 'Float Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar4(); + EAttribute getSketch_FloatVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar5 Float Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. * * * @return the meta object for the attribute 'Float Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar5(); + EAttribute getSketch_FloatVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar1 Double Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. * * * @return the meta object for the attribute 'Double Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar1(); + EAttribute getSketch_DoubleVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar2 Double Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. * * * @return the meta object for the attribute 'Double Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar2(); + EAttribute getSketch_DoubleVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar3 Double Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. * * * @return the meta object for the attribute 'Double Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar3(); + EAttribute getSketch_DoubleVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar4 Double Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. * * * @return the meta object for the attribute 'Double Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar4(); + EAttribute getSketch_DoubleVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar5 Double Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. * * * @return the meta object for the attribute 'Double Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar5(); + EAttribute getSketch_DoubleVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}'. * * * @return the meta object for the attribute 'Boolean Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar1(); + EAttribute getSketch_BooleanVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. * * * @return the meta object for the attribute 'Boolean Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar2(); + EAttribute getSketch_BooleanVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. * * * @return the meta object for the attribute 'Boolean Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar3(); + EAttribute getSketch_BooleanVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. * * * @return the meta object for the attribute 'Boolean Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar4(); + EAttribute getSketch_BooleanVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. * * * @return the meta object for the attribute 'Boolean Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar5(); + EAttribute getSketch_BooleanVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar1 String Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar1 String Var1}'. * * * @return the meta object for the attribute 'String Var1'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar1(); + EAttribute getSketch_StringVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar2 String Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar2 String Var2}'. * * * @return the meta object for the attribute 'String Var2'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar2(); + EAttribute getSketch_StringVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar3 String Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar3 String Var3}'. * * * @return the meta object for the attribute 'String Var3'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar3(); + EAttribute getSketch_StringVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar4 String Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar4 String Var4}'. * * * @return the meta object for the attribute 'String Var4'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar4(); + EAttribute getSketch_StringVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar5 String Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar5 String Var5}'. * * * @return the meta object for the attribute 'String Var5'. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar5(); + EAttribute getSketch_StringVar5(); /** * Returns the factory that creates the instances of the model. @@ -1158,6 +1158,7 @@ interface Literals { * @generated */ EClass DIAGRAM = eINSTANCE.getDiagram(); + /** * The meta object literal for the 'Created' attribute feature. * @@ -1165,330 +1166,376 @@ interface Literals { * @generated */ EAttribute DIAGRAM__CREATED = eINSTANCE.getDiagram_Created(); + /** - * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl File}' class. + * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - EClass FILE = eINSTANCE.getFile(); + EClass SKETCH = eINSTANCE.getSketch(); + /** * The meta object literal for the 'Byte Var1' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR1 = eINSTANCE.getFile_ByteVar1(); + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); + /** * The meta object literal for the 'Byte Var2' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR2 = eINSTANCE.getFile_ByteVar2(); + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); + /** * The meta object literal for the 'Byte Var3' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR3 = eINSTANCE.getFile_ByteVar3(); + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); + /** * The meta object literal for the 'Byte Var4' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR4 = eINSTANCE.getFile_ByteVar4(); + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); + /** * The meta object literal for the 'Byte Var5' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR5 = eINSTANCE.getFile_ByteVar5(); + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); + /** * The meta object literal for the 'Short Var1' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR1 = eINSTANCE.getFile_ShortVar1(); + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); + /** * The meta object literal for the 'Short Var2' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR2 = eINSTANCE.getFile_ShortVar2(); + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); + /** * The meta object literal for the 'Short Var3' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR3 = eINSTANCE.getFile_ShortVar3(); + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); + /** * The meta object literal for the 'Short Var4' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR4 = eINSTANCE.getFile_ShortVar4(); + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); + /** * The meta object literal for the 'Short Var5' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR5 = eINSTANCE.getFile_ShortVar5(); + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); + /** * The meta object literal for the 'Int Var1' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR1 = eINSTANCE.getFile_IntVar1(); + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); + /** * The meta object literal for the 'Int Var2' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR2 = eINSTANCE.getFile_IntVar2(); + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); + /** * The meta object literal for the 'Int Var3' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR3 = eINSTANCE.getFile_IntVar3(); + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); + /** * The meta object literal for the 'Int Var4' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR4 = eINSTANCE.getFile_IntVar4(); + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); + /** * The meta object literal for the 'Int Var5' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR5 = eINSTANCE.getFile_IntVar5(); + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); + /** * The meta object literal for the 'Char Var1' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR1 = eINSTANCE.getFile_CharVar1(); + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); + /** * The meta object literal for the 'Char Var2' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR2 = eINSTANCE.getFile_CharVar2(); + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); + /** * The meta object literal for the 'Char Var3' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR3 = eINSTANCE.getFile_CharVar3(); + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); + /** * The meta object literal for the 'Char Var4' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR4 = eINSTANCE.getFile_CharVar4(); + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); + /** * The meta object literal for the 'Char Var5' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR5 = eINSTANCE.getFile_CharVar5(); + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); + /** * The meta object literal for the 'Long Var1' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR1 = eINSTANCE.getFile_LongVar1(); + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); + /** * The meta object literal for the 'Long Var2' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR2 = eINSTANCE.getFile_LongVar2(); + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); + /** * The meta object literal for the 'Long Var3' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR3 = eINSTANCE.getFile_LongVar3(); + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); + /** * The meta object literal for the 'Long Var4' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR4 = eINSTANCE.getFile_LongVar4(); + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); + /** * The meta object literal for the 'Long Var5' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR5 = eINSTANCE.getFile_LongVar5(); + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); + /** * The meta object literal for the 'Float Var1' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR1 = eINSTANCE.getFile_FloatVar1(); + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); + /** * The meta object literal for the 'Float Var2' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR2 = eINSTANCE.getFile_FloatVar2(); + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); + /** * The meta object literal for the 'Float Var3' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR3 = eINSTANCE.getFile_FloatVar3(); + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); + /** * The meta object literal for the 'Float Var4' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR4 = eINSTANCE.getFile_FloatVar4(); + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); + /** * The meta object literal for the 'Float Var5' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR5 = eINSTANCE.getFile_FloatVar5(); + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); + /** * The meta object literal for the 'Double Var1' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR1 = eINSTANCE.getFile_DoubleVar1(); + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); + /** * The meta object literal for the 'Double Var2' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR2 = eINSTANCE.getFile_DoubleVar2(); + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); + /** * The meta object literal for the 'Double Var3' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR3 = eINSTANCE.getFile_DoubleVar3(); + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); + /** * The meta object literal for the 'Double Var4' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR4 = eINSTANCE.getFile_DoubleVar4(); + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); + /** * The meta object literal for the 'Double Var5' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR5 = eINSTANCE.getFile_DoubleVar5(); + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); + /** * The meta object literal for the 'Boolean Var1' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR1 = eINSTANCE.getFile_BooleanVar1(); + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); + /** * The meta object literal for the 'Boolean Var2' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR2 = eINSTANCE.getFile_BooleanVar2(); + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); + /** * The meta object literal for the 'Boolean Var3' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR3 = eINSTANCE.getFile_BooleanVar3(); + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); + /** * The meta object literal for the 'Boolean Var4' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR4 = eINSTANCE.getFile_BooleanVar4(); + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); + /** * The meta object literal for the 'Boolean Var5' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR5 = eINSTANCE.getFile_BooleanVar5(); + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); + /** * The meta object literal for the 'String Var1' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR1 = eINSTANCE.getFile_StringVar1(); + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); + /** * The meta object literal for the 'String Var2' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR2 = eINSTANCE.getFile_StringVar2(); + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); + /** * The meta object literal for the 'String Var3' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR3 = eINSTANCE.getFile_StringVar3(); + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); + /** * The meta object literal for the 'String Var4' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR4 = eINSTANCE.getFile_StringVar4(); + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); + /** * The meta object literal for the 'String Var5' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR5 = eINSTANCE.getFile_StringVar5(); + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Diagram.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Diagram.java index a26125b0e..835f46535 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Diagram.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Diagram.java @@ -4,6 +4,7 @@ import com.specmate.migration.test.attributeadded.testmodel.base.IContainer; import com.specmate.migration.test.attributeadded.testmodel.base.IModifiable; + import java.util.Date; /** @@ -23,7 +24,6 @@ * @generated */ public interface Diagram extends IModifiable, IContainer { - /** * Returns the value of the 'Created' attribute. * @@ -49,4 +49,5 @@ public interface Diagram extends IModifiable, IContainer { * @generated */ void setCreated(Date value); + } // Diagram diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/File.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Sketch.java similarity index 82% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/File.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Sketch.java index 4587d26db..9f6f17a11 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/File.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/Sketch.java @@ -7,65 +7,65 @@ /** * - * A representation of the model object 'File'. + * A representation of the model object 'Sketch'. * * *

* The following features are supported: *

*
    - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar5 String Var5}
  • *
* - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch() * @model * @generated */ -public interface File extends IModifiable, IContainer { +public interface Sketch extends IModifiable, IContainer { /** * Returns the value of the 'Byte Var1' attribute. * @@ -76,14 +76,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var1' attribute. * @see #setByteVar1(byte) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() * @model * @generated */ byte getByteVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar1 Byte Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. * * * @param value the new value of the 'Byte Var1' attribute. @@ -102,14 +102,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var2' attribute. * @see #setByteVar2(byte) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() * @model * @generated */ byte getByteVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar2 Byte Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. * * * @param value the new value of the 'Byte Var2' attribute. @@ -128,14 +128,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var3' attribute. * @see #setByteVar3(byte) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() * @model * @generated */ byte getByteVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar3 Byte Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. * * * @param value the new value of the 'Byte Var3' attribute. @@ -154,14 +154,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var4' attribute. * @see #setByteVar4(byte) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() * @model * @generated */ byte getByteVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar4 Byte Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. * * * @param value the new value of the 'Byte Var4' attribute. @@ -180,14 +180,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var5' attribute. * @see #setByteVar5(byte) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() * @model * @generated */ byte getByteVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getByteVar5 Byte Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. * * * @param value the new value of the 'Byte Var5' attribute. @@ -206,14 +206,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var1' attribute. * @see #setShortVar1(short) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() * @model * @generated */ short getShortVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar1 Short Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. * * * @param value the new value of the 'Short Var1' attribute. @@ -232,14 +232,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var2' attribute. * @see #setShortVar2(short) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() * @model * @generated */ short getShortVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar2 Short Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. * * * @param value the new value of the 'Short Var2' attribute. @@ -258,14 +258,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var3' attribute. * @see #setShortVar3(short) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() * @model * @generated */ short getShortVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar3 Short Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. * * * @param value the new value of the 'Short Var3' attribute. @@ -284,14 +284,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var4' attribute. * @see #setShortVar4(short) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() * @model * @generated */ short getShortVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar4 Short Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. * * * @param value the new value of the 'Short Var4' attribute. @@ -310,14 +310,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var5' attribute. * @see #setShortVar5(short) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() * @model * @generated */ short getShortVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getShortVar5 Short Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. * * * @param value the new value of the 'Short Var5' attribute. @@ -336,14 +336,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var1' attribute. * @see #setIntVar1(int) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_IntVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() * @model * @generated */ int getIntVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar1 Int Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. * * * @param value the new value of the 'Int Var1' attribute. @@ -362,14 +362,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var2' attribute. * @see #setIntVar2(int) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_IntVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() * @model * @generated */ int getIntVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar2 Int Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. * * * @param value the new value of the 'Int Var2' attribute. @@ -388,14 +388,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var3' attribute. * @see #setIntVar3(int) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_IntVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() * @model * @generated */ int getIntVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar3 Int Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. * * * @param value the new value of the 'Int Var3' attribute. @@ -414,14 +414,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var4' attribute. * @see #setIntVar4(int) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_IntVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() * @model * @generated */ int getIntVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar4 Int Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. * * * @param value the new value of the 'Int Var4' attribute. @@ -440,14 +440,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var5' attribute. * @see #setIntVar5(int) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_IntVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() * @model * @generated */ int getIntVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getIntVar5 Int Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. * * * @param value the new value of the 'Int Var5' attribute. @@ -466,14 +466,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var1' attribute. * @see #setCharVar1(char) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_CharVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() * @model * @generated */ char getCharVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar1 Char Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. * * * @param value the new value of the 'Char Var1' attribute. @@ -492,14 +492,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var2' attribute. * @see #setCharVar2(char) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_CharVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() * @model * @generated */ char getCharVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar2 Char Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. * * * @param value the new value of the 'Char Var2' attribute. @@ -518,14 +518,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var3' attribute. * @see #setCharVar3(char) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_CharVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() * @model * @generated */ char getCharVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar3 Char Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. * * * @param value the new value of the 'Char Var3' attribute. @@ -544,14 +544,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var4' attribute. * @see #setCharVar4(char) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_CharVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() * @model * @generated */ char getCharVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar4 Char Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. * * * @param value the new value of the 'Char Var4' attribute. @@ -570,14 +570,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var5' attribute. * @see #setCharVar5(char) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_CharVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() * @model * @generated */ char getCharVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getCharVar5 Char Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. * * * @param value the new value of the 'Char Var5' attribute. @@ -596,14 +596,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var1' attribute. * @see #setLongVar1(long) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_LongVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() * @model * @generated */ long getLongVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar1 Long Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. * * * @param value the new value of the 'Long Var1' attribute. @@ -622,14 +622,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var2' attribute. * @see #setLongVar2(long) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_LongVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() * @model * @generated */ long getLongVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar2 Long Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. * * * @param value the new value of the 'Long Var2' attribute. @@ -648,14 +648,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var3' attribute. * @see #setLongVar3(long) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_LongVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() * @model * @generated */ long getLongVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar3 Long Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. * * * @param value the new value of the 'Long Var3' attribute. @@ -674,14 +674,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var4' attribute. * @see #setLongVar4(long) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_LongVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() * @model * @generated */ long getLongVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar4 Long Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. * * * @param value the new value of the 'Long Var4' attribute. @@ -700,14 +700,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var5' attribute. * @see #setLongVar5(long) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_LongVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() * @model * @generated */ long getLongVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getLongVar5 Long Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. * * * @param value the new value of the 'Long Var5' attribute. @@ -726,14 +726,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var1' attribute. * @see #setFloatVar1(float) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() * @model * @generated */ float getFloatVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar1 Float Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. * * * @param value the new value of the 'Float Var1' attribute. @@ -752,14 +752,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var2' attribute. * @see #setFloatVar2(float) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() * @model * @generated */ float getFloatVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar2 Float Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. * * * @param value the new value of the 'Float Var2' attribute. @@ -778,14 +778,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var3' attribute. * @see #setFloatVar3(float) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() * @model * @generated */ float getFloatVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar3 Float Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. * * * @param value the new value of the 'Float Var3' attribute. @@ -804,14 +804,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var4' attribute. * @see #setFloatVar4(float) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() * @model * @generated */ float getFloatVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar4 Float Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. * * * @param value the new value of the 'Float Var4' attribute. @@ -830,14 +830,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var5' attribute. * @see #setFloatVar5(float) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() * @model * @generated */ float getFloatVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getFloatVar5 Float Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. * * * @param value the new value of the 'Float Var5' attribute. @@ -856,14 +856,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var1' attribute. * @see #setDoubleVar1(double) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() * @model * @generated */ double getDoubleVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar1 Double Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. * * * @param value the new value of the 'Double Var1' attribute. @@ -882,14 +882,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var2' attribute. * @see #setDoubleVar2(double) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() * @model * @generated */ double getDoubleVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar2 Double Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. * * * @param value the new value of the 'Double Var2' attribute. @@ -908,14 +908,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var3' attribute. * @see #setDoubleVar3(double) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() * @model * @generated */ double getDoubleVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar3 Double Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. * * * @param value the new value of the 'Double Var3' attribute. @@ -934,14 +934,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var4' attribute. * @see #setDoubleVar4(double) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() * @model * @generated */ double getDoubleVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar4 Double Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. * * * @param value the new value of the 'Double Var4' attribute. @@ -960,14 +960,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var5' attribute. * @see #setDoubleVar5(double) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() * @model * @generated */ double getDoubleVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getDoubleVar5 Double Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. * * * @param value the new value of the 'Double Var5' attribute. @@ -986,14 +986,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var1' attribute. * @see #setBooleanVar1(boolean) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() * @model * @generated */ boolean isBooleanVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}' attribute. * * * @param value the new value of the 'Boolean Var1' attribute. @@ -1012,14 +1012,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var2' attribute. * @see #setBooleanVar2(boolean) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() * @model * @generated */ boolean isBooleanVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. * * * @param value the new value of the 'Boolean Var2' attribute. @@ -1038,14 +1038,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var3' attribute. * @see #setBooleanVar3(boolean) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() * @model * @generated */ boolean isBooleanVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. * * * @param value the new value of the 'Boolean Var3' attribute. @@ -1064,14 +1064,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var4' attribute. * @see #setBooleanVar4(boolean) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() * @model * @generated */ boolean isBooleanVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. * * * @param value the new value of the 'Boolean Var4' attribute. @@ -1090,14 +1090,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var5' attribute. * @see #setBooleanVar5(boolean) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() * @model * @generated */ boolean isBooleanVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. * * * @param value the new value of the 'Boolean Var5' attribute. @@ -1116,14 +1116,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var1' attribute. * @see #setStringVar1(String) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_StringVar1() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() * @model * @generated */ String getStringVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar1 String Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar1 String Var1}' attribute. * * * @param value the new value of the 'String Var1' attribute. @@ -1142,14 +1142,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var2' attribute. * @see #setStringVar2(String) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_StringVar2() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() * @model * @generated */ String getStringVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar2 String Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar2 String Var2}' attribute. * * * @param value the new value of the 'String Var2' attribute. @@ -1168,14 +1168,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var3' attribute. * @see #setStringVar3(String) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_StringVar3() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() * @model * @generated */ String getStringVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar3 String Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar3 String Var3}' attribute. * * * @param value the new value of the 'String Var3' attribute. @@ -1194,14 +1194,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var4' attribute. * @see #setStringVar4(String) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_StringVar4() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() * @model * @generated */ String getStringVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar4 String Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar4 String Var4}' attribute. * * * @param value the new value of the 'String Var4' attribute. @@ -1220,14 +1220,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var5' attribute. * @see #setStringVar5(String) - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getFile_StringVar5() + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() * @model * @generated */ String getStringVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File#getStringVar5 String Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch#getStringVar5 String Var5}' attribute. * * * @param value the new value of the 'String Var5' attribute. @@ -1236,4 +1236,4 @@ public interface File extends IModifiable, IContainer { */ void setStringVar5(String value); -} // File +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactFactoryImpl.java index 400fcfd9a..9abd2628f 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactFactoryImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -57,7 +57,7 @@ public ArtefactFactoryImpl() { public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ArtefactPackage.DIAGRAM: return createDiagram(); - case ArtefactPackage.FILE: return createFile(); + case ArtefactPackage.SKETCH: return createSketch(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } @@ -78,9 +78,9 @@ public Diagram createDiagram() { * * @generated */ - public File createFile() { - FileImpl file = new FileImpl(); - return file; + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactPackageImpl.java index a44fdf11f..b836cd162 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactPackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -5,11 +5,12 @@ import com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactFactory; import com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage; import com.specmate.migration.test.attributeadded.testmodel.artefact.Diagram; +import com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch; -import com.specmate.migration.test.attributeadded.testmodel.artefact.File; import com.specmate.migration.test.attributeadded.testmodel.base.BasePackage; import com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl; + import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; @@ -35,7 +36,7 @@ public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage * * @generated */ - private EClass fileEClass = null; + private EClass sketchEClass = null; /** * Creates an instance of the model Package, registered with @@ -126,8 +127,8 @@ public EAttribute getDiagram_Created() { * * @generated */ - public EClass getFile() { - return fileEClass; + public EClass getSketch() { + return sketchEClass; } /** @@ -135,8 +136,8 @@ public EClass getFile() { * * @generated */ - public EAttribute getFile_ByteVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(0); + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); } /** @@ -144,8 +145,8 @@ public EAttribute getFile_ByteVar1() { * * @generated */ - public EAttribute getFile_ByteVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(1); + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); } /** @@ -153,8 +154,8 @@ public EAttribute getFile_ByteVar2() { * * @generated */ - public EAttribute getFile_ByteVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(2); + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); } /** @@ -162,8 +163,8 @@ public EAttribute getFile_ByteVar3() { * * @generated */ - public EAttribute getFile_ByteVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(3); + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); } /** @@ -171,8 +172,8 @@ public EAttribute getFile_ByteVar4() { * * @generated */ - public EAttribute getFile_ByteVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(4); + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); } /** @@ -180,8 +181,8 @@ public EAttribute getFile_ByteVar5() { * * @generated */ - public EAttribute getFile_ShortVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(5); + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); } /** @@ -189,8 +190,8 @@ public EAttribute getFile_ShortVar1() { * * @generated */ - public EAttribute getFile_ShortVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(6); + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); } /** @@ -198,8 +199,8 @@ public EAttribute getFile_ShortVar2() { * * @generated */ - public EAttribute getFile_ShortVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(7); + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); } /** @@ -207,8 +208,8 @@ public EAttribute getFile_ShortVar3() { * * @generated */ - public EAttribute getFile_ShortVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(8); + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); } /** @@ -216,8 +217,8 @@ public EAttribute getFile_ShortVar4() { * * @generated */ - public EAttribute getFile_ShortVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(9); + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); } /** @@ -225,8 +226,8 @@ public EAttribute getFile_ShortVar5() { * * @generated */ - public EAttribute getFile_IntVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(10); + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); } /** @@ -234,8 +235,8 @@ public EAttribute getFile_IntVar1() { * * @generated */ - public EAttribute getFile_IntVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(11); + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); } /** @@ -243,8 +244,8 @@ public EAttribute getFile_IntVar2() { * * @generated */ - public EAttribute getFile_IntVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(12); + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); } /** @@ -252,8 +253,8 @@ public EAttribute getFile_IntVar3() { * * @generated */ - public EAttribute getFile_IntVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(13); + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); } /** @@ -261,8 +262,8 @@ public EAttribute getFile_IntVar4() { * * @generated */ - public EAttribute getFile_IntVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(14); + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); } /** @@ -270,8 +271,8 @@ public EAttribute getFile_IntVar5() { * * @generated */ - public EAttribute getFile_CharVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(15); + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); } /** @@ -279,8 +280,8 @@ public EAttribute getFile_CharVar1() { * * @generated */ - public EAttribute getFile_CharVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(16); + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); } /** @@ -288,8 +289,8 @@ public EAttribute getFile_CharVar2() { * * @generated */ - public EAttribute getFile_CharVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(17); + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); } /** @@ -297,8 +298,8 @@ public EAttribute getFile_CharVar3() { * * @generated */ - public EAttribute getFile_CharVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(18); + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); } /** @@ -306,8 +307,8 @@ public EAttribute getFile_CharVar4() { * * @generated */ - public EAttribute getFile_CharVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(19); + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); } /** @@ -315,8 +316,8 @@ public EAttribute getFile_CharVar5() { * * @generated */ - public EAttribute getFile_LongVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(20); + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); } /** @@ -324,8 +325,8 @@ public EAttribute getFile_LongVar1() { * * @generated */ - public EAttribute getFile_LongVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(21); + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); } /** @@ -333,8 +334,8 @@ public EAttribute getFile_LongVar2() { * * @generated */ - public EAttribute getFile_LongVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(22); + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); } /** @@ -342,8 +343,8 @@ public EAttribute getFile_LongVar3() { * * @generated */ - public EAttribute getFile_LongVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(23); + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); } /** @@ -351,8 +352,8 @@ public EAttribute getFile_LongVar4() { * * @generated */ - public EAttribute getFile_LongVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(24); + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); } /** @@ -360,8 +361,8 @@ public EAttribute getFile_LongVar5() { * * @generated */ - public EAttribute getFile_FloatVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(25); + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); } /** @@ -369,8 +370,8 @@ public EAttribute getFile_FloatVar1() { * * @generated */ - public EAttribute getFile_FloatVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(26); + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); } /** @@ -378,8 +379,8 @@ public EAttribute getFile_FloatVar2() { * * @generated */ - public EAttribute getFile_FloatVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(27); + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); } /** @@ -387,8 +388,8 @@ public EAttribute getFile_FloatVar3() { * * @generated */ - public EAttribute getFile_FloatVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(28); + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); } /** @@ -396,8 +397,8 @@ public EAttribute getFile_FloatVar4() { * * @generated */ - public EAttribute getFile_FloatVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(29); + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); } /** @@ -405,8 +406,8 @@ public EAttribute getFile_FloatVar5() { * * @generated */ - public EAttribute getFile_DoubleVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(30); + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); } /** @@ -414,8 +415,8 @@ public EAttribute getFile_DoubleVar1() { * * @generated */ - public EAttribute getFile_DoubleVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(31); + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); } /** @@ -423,8 +424,8 @@ public EAttribute getFile_DoubleVar2() { * * @generated */ - public EAttribute getFile_DoubleVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(32); + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); } /** @@ -432,8 +433,8 @@ public EAttribute getFile_DoubleVar3() { * * @generated */ - public EAttribute getFile_DoubleVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(33); + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); } /** @@ -441,8 +442,8 @@ public EAttribute getFile_DoubleVar4() { * * @generated */ - public EAttribute getFile_DoubleVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(34); + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); } /** @@ -450,8 +451,8 @@ public EAttribute getFile_DoubleVar5() { * * @generated */ - public EAttribute getFile_BooleanVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(35); + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); } /** @@ -459,8 +460,8 @@ public EAttribute getFile_BooleanVar1() { * * @generated */ - public EAttribute getFile_BooleanVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(36); + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); } /** @@ -468,8 +469,8 @@ public EAttribute getFile_BooleanVar2() { * * @generated */ - public EAttribute getFile_BooleanVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(37); + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); } /** @@ -477,8 +478,8 @@ public EAttribute getFile_BooleanVar3() { * * @generated */ - public EAttribute getFile_BooleanVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(38); + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); } /** @@ -486,8 +487,8 @@ public EAttribute getFile_BooleanVar4() { * * @generated */ - public EAttribute getFile_BooleanVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(39); + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); } /** @@ -495,8 +496,8 @@ public EAttribute getFile_BooleanVar5() { * * @generated */ - public EAttribute getFile_StringVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(40); + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); } /** @@ -504,8 +505,8 @@ public EAttribute getFile_StringVar1() { * * @generated */ - public EAttribute getFile_StringVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(41); + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); } /** @@ -513,8 +514,8 @@ public EAttribute getFile_StringVar2() { * * @generated */ - public EAttribute getFile_StringVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(42); + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); } /** @@ -522,8 +523,8 @@ public EAttribute getFile_StringVar3() { * * @generated */ - public EAttribute getFile_StringVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(43); + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); } /** @@ -531,8 +532,8 @@ public EAttribute getFile_StringVar4() { * * @generated */ - public EAttribute getFile_StringVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(44); + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); } /** @@ -566,52 +567,52 @@ public void createPackageContents() { diagramEClass = createEClass(DIAGRAM); createEAttribute(diagramEClass, DIAGRAM__CREATED); - fileEClass = createEClass(FILE); - createEAttribute(fileEClass, FILE__BYTE_VAR1); - createEAttribute(fileEClass, FILE__BYTE_VAR2); - createEAttribute(fileEClass, FILE__BYTE_VAR3); - createEAttribute(fileEClass, FILE__BYTE_VAR4); - createEAttribute(fileEClass, FILE__BYTE_VAR5); - createEAttribute(fileEClass, FILE__SHORT_VAR1); - createEAttribute(fileEClass, FILE__SHORT_VAR2); - createEAttribute(fileEClass, FILE__SHORT_VAR3); - createEAttribute(fileEClass, FILE__SHORT_VAR4); - createEAttribute(fileEClass, FILE__SHORT_VAR5); - createEAttribute(fileEClass, FILE__INT_VAR1); - createEAttribute(fileEClass, FILE__INT_VAR2); - createEAttribute(fileEClass, FILE__INT_VAR3); - createEAttribute(fileEClass, FILE__INT_VAR4); - createEAttribute(fileEClass, FILE__INT_VAR5); - createEAttribute(fileEClass, FILE__CHAR_VAR1); - createEAttribute(fileEClass, FILE__CHAR_VAR2); - createEAttribute(fileEClass, FILE__CHAR_VAR3); - createEAttribute(fileEClass, FILE__CHAR_VAR4); - createEAttribute(fileEClass, FILE__CHAR_VAR5); - createEAttribute(fileEClass, FILE__LONG_VAR1); - createEAttribute(fileEClass, FILE__LONG_VAR2); - createEAttribute(fileEClass, FILE__LONG_VAR3); - createEAttribute(fileEClass, FILE__LONG_VAR4); - createEAttribute(fileEClass, FILE__LONG_VAR5); - createEAttribute(fileEClass, FILE__FLOAT_VAR1); - createEAttribute(fileEClass, FILE__FLOAT_VAR2); - createEAttribute(fileEClass, FILE__FLOAT_VAR3); - createEAttribute(fileEClass, FILE__FLOAT_VAR4); - createEAttribute(fileEClass, FILE__FLOAT_VAR5); - createEAttribute(fileEClass, FILE__DOUBLE_VAR1); - createEAttribute(fileEClass, FILE__DOUBLE_VAR2); - createEAttribute(fileEClass, FILE__DOUBLE_VAR3); - createEAttribute(fileEClass, FILE__DOUBLE_VAR4); - createEAttribute(fileEClass, FILE__DOUBLE_VAR5); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR1); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR2); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR3); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR4); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR5); - createEAttribute(fileEClass, FILE__STRING_VAR1); - createEAttribute(fileEClass, FILE__STRING_VAR2); - createEAttribute(fileEClass, FILE__STRING_VAR3); - createEAttribute(fileEClass, FILE__STRING_VAR4); - createEAttribute(fileEClass, FILE__STRING_VAR5); + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); } /** @@ -647,59 +648,59 @@ public void initializePackageContents() { // Add supertypes to classes diagramEClass.getESuperTypes().add(theBasePackage.getIModifiable()); diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); - fileEClass.getESuperTypes().add(theBasePackage.getIModifiable()); - fileEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); // Initialize classes, features, and operations; add parameters initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); initEAttribute(getDiagram_Created(), ecorePackage.getEDate(), "created", null, 0, 1, Diagram.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEClass(fileEClass, File.class, "File", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEAttribute(getFile_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); // Create resource createResource(eNS_URI); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/DiagramImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/DiagramImpl.java index 676ef2dd0..8f102c440 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/DiagramImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/DiagramImpl.java @@ -12,8 +12,8 @@ import com.specmate.migration.test.attributeadded.testmodel.base.INamed; import java.util.Collection; - import java.util.Date; + import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/FileImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/SketchImpl.java similarity index 63% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/FileImpl.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/SketchImpl.java index 17fe1ddf5..4384ea963 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/FileImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/impl/SketchImpl.java @@ -3,7 +3,7 @@ package com.specmate.migration.test.attributeadded.testmodel.artefact.impl; import com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage; -import com.specmate.migration.test.attributeadded.testmodel.artefact.File; +import com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch; import com.specmate.migration.test.attributeadded.testmodel.base.BasePackage; import com.specmate.migration.test.attributeadded.testmodel.base.IContainer; @@ -26,66 +26,66 @@ /** * - * An implementation of the model object 'File'. + * An implementation of the model object 'Sketch'. * *

* The following features are implemented: *

*
    - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#isTested Tested}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getName Name}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getId Id}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getContents Contents}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.FileImpl#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getName Name}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.attributeadded.testmodel.artefact.impl.SketchImpl#getStringVar5 String Var5}
  • *
* * @generated */ -public class FileImpl extends MinimalEObjectImpl.Container implements File { +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { /** * The default value of the '{@link #isTested() Tested}' attribute. * @@ -571,7 +571,7 @@ public class FileImpl extends MinimalEObjectImpl.Container implements File { * * @generated */ - protected FileImpl() { + protected SketchImpl() { super(); } @@ -582,7 +582,7 @@ protected FileImpl() { */ @Override protected EClass eStaticClass() { - return ArtefactPackage.Literals.FILE; + return ArtefactPackage.Literals.SKETCH; } /** @@ -601,7 +601,7 @@ protected int eStaticFeatureCount() { * @generated */ public boolean isTested() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); } /** @@ -610,7 +610,7 @@ public boolean isTested() { * @generated */ public void setTested(boolean newTested) { - eDynamicSet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + eDynamicSet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); } /** @@ -619,7 +619,7 @@ public void setTested(boolean newTested) { * @generated */ public String getName() { - return (String)eDynamicGet(ArtefactPackage.FILE__NAME, BasePackage.Literals.INAMED__NAME, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__NAME, BasePackage.Literals.INAMED__NAME, true, true); } /** @@ -628,7 +628,7 @@ public String getName() { * @generated */ public void setName(String newName) { - eDynamicSet(ArtefactPackage.FILE__NAME, BasePackage.Literals.INAMED__NAME, newName); + eDynamicSet(ArtefactPackage.SKETCH__NAME, BasePackage.Literals.INAMED__NAME, newName); } /** @@ -637,7 +637,7 @@ public void setName(String newName) { * @generated */ public String getId() { - return (String)eDynamicGet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); } /** @@ -646,7 +646,7 @@ public String getId() { * @generated */ public void setId(String newId) { - eDynamicSet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, newId); + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); } /** @@ -656,7 +656,7 @@ public void setId(String newId) { */ @SuppressWarnings("unchecked") public EList getContents() { - return (EList)eDynamicGet(ArtefactPackage.FILE__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); } /** @@ -665,7 +665,7 @@ public EList getContents() { * @generated */ public byte getByteVar1() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); } /** @@ -674,7 +674,7 @@ public byte getByteVar1() { * @generated */ public void setByteVar1(byte newByteVar1) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, newByteVar1); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); } /** @@ -683,7 +683,7 @@ public void setByteVar1(byte newByteVar1) { * @generated */ public byte getByteVar2() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); } /** @@ -692,7 +692,7 @@ public byte getByteVar2() { * @generated */ public void setByteVar2(byte newByteVar2) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, newByteVar2); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); } /** @@ -701,7 +701,7 @@ public void setByteVar2(byte newByteVar2) { * @generated */ public byte getByteVar3() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); } /** @@ -710,7 +710,7 @@ public byte getByteVar3() { * @generated */ public void setByteVar3(byte newByteVar3) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, newByteVar3); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); } /** @@ -719,7 +719,7 @@ public void setByteVar3(byte newByteVar3) { * @generated */ public byte getByteVar4() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); } /** @@ -728,7 +728,7 @@ public byte getByteVar4() { * @generated */ public void setByteVar4(byte newByteVar4) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, newByteVar4); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); } /** @@ -737,7 +737,7 @@ public void setByteVar4(byte newByteVar4) { * @generated */ public byte getByteVar5() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); } /** @@ -746,7 +746,7 @@ public byte getByteVar5() { * @generated */ public void setByteVar5(byte newByteVar5) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, newByteVar5); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); } /** @@ -755,7 +755,7 @@ public void setByteVar5(byte newByteVar5) { * @generated */ public short getShortVar1() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); } /** @@ -764,7 +764,7 @@ public short getShortVar1() { * @generated */ public void setShortVar1(short newShortVar1) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, newShortVar1); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); } /** @@ -773,7 +773,7 @@ public void setShortVar1(short newShortVar1) { * @generated */ public short getShortVar2() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); } /** @@ -782,7 +782,7 @@ public short getShortVar2() { * @generated */ public void setShortVar2(short newShortVar2) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, newShortVar2); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); } /** @@ -791,7 +791,7 @@ public void setShortVar2(short newShortVar2) { * @generated */ public short getShortVar3() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); } /** @@ -800,7 +800,7 @@ public short getShortVar3() { * @generated */ public void setShortVar3(short newShortVar3) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, newShortVar3); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); } /** @@ -809,7 +809,7 @@ public void setShortVar3(short newShortVar3) { * @generated */ public short getShortVar4() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); } /** @@ -818,7 +818,7 @@ public short getShortVar4() { * @generated */ public void setShortVar4(short newShortVar4) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, newShortVar4); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); } /** @@ -827,7 +827,7 @@ public void setShortVar4(short newShortVar4) { * @generated */ public short getShortVar5() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); } /** @@ -836,7 +836,7 @@ public short getShortVar5() { * @generated */ public void setShortVar5(short newShortVar5) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, newShortVar5); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); } /** @@ -845,7 +845,7 @@ public void setShortVar5(short newShortVar5) { * @generated */ public int getIntVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); } /** @@ -854,7 +854,7 @@ public int getIntVar1() { * @generated */ public void setIntVar1(int newIntVar1) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, newIntVar1); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); } /** @@ -863,7 +863,7 @@ public void setIntVar1(int newIntVar1) { * @generated */ public int getIntVar2() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); } /** @@ -872,7 +872,7 @@ public int getIntVar2() { * @generated */ public void setIntVar2(int newIntVar2) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, newIntVar2); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); } /** @@ -881,7 +881,7 @@ public void setIntVar2(int newIntVar2) { * @generated */ public int getIntVar3() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); } /** @@ -890,7 +890,7 @@ public int getIntVar3() { * @generated */ public void setIntVar3(int newIntVar3) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, newIntVar3); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); } /** @@ -899,7 +899,7 @@ public void setIntVar3(int newIntVar3) { * @generated */ public int getIntVar4() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); } /** @@ -908,7 +908,7 @@ public int getIntVar4() { * @generated */ public void setIntVar4(int newIntVar4) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, newIntVar4); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); } /** @@ -917,7 +917,7 @@ public void setIntVar4(int newIntVar4) { * @generated */ public int getIntVar5() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); } /** @@ -926,7 +926,7 @@ public int getIntVar5() { * @generated */ public void setIntVar5(int newIntVar5) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, newIntVar5); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); } /** @@ -935,7 +935,7 @@ public void setIntVar5(int newIntVar5) { * @generated */ public char getCharVar1() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); } /** @@ -944,7 +944,7 @@ public char getCharVar1() { * @generated */ public void setCharVar1(char newCharVar1) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, newCharVar1); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); } /** @@ -953,7 +953,7 @@ public void setCharVar1(char newCharVar1) { * @generated */ public char getCharVar2() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); } /** @@ -962,7 +962,7 @@ public char getCharVar2() { * @generated */ public void setCharVar2(char newCharVar2) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, newCharVar2); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); } /** @@ -971,7 +971,7 @@ public void setCharVar2(char newCharVar2) { * @generated */ public char getCharVar3() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); } /** @@ -980,7 +980,7 @@ public char getCharVar3() { * @generated */ public void setCharVar3(char newCharVar3) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, newCharVar3); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); } /** @@ -989,7 +989,7 @@ public void setCharVar3(char newCharVar3) { * @generated */ public char getCharVar4() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); } /** @@ -998,7 +998,7 @@ public char getCharVar4() { * @generated */ public void setCharVar4(char newCharVar4) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, newCharVar4); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); } /** @@ -1007,7 +1007,7 @@ public void setCharVar4(char newCharVar4) { * @generated */ public char getCharVar5() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); } /** @@ -1016,7 +1016,7 @@ public char getCharVar5() { * @generated */ public void setCharVar5(char newCharVar5) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, newCharVar5); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); } /** @@ -1025,7 +1025,7 @@ public void setCharVar5(char newCharVar5) { * @generated */ public long getLongVar1() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); } /** @@ -1034,7 +1034,7 @@ public long getLongVar1() { * @generated */ public void setLongVar1(long newLongVar1) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, newLongVar1); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); } /** @@ -1043,7 +1043,7 @@ public void setLongVar1(long newLongVar1) { * @generated */ public long getLongVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); } /** @@ -1052,7 +1052,7 @@ public long getLongVar2() { * @generated */ public void setLongVar2(long newLongVar2) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, newLongVar2); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); } /** @@ -1061,7 +1061,7 @@ public void setLongVar2(long newLongVar2) { * @generated */ public long getLongVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); } /** @@ -1070,7 +1070,7 @@ public long getLongVar3() { * @generated */ public void setLongVar3(long newLongVar3) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, newLongVar3); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); } /** @@ -1079,7 +1079,7 @@ public void setLongVar3(long newLongVar3) { * @generated */ public long getLongVar4() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); } /** @@ -1088,7 +1088,7 @@ public long getLongVar4() { * @generated */ public void setLongVar4(long newLongVar4) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, newLongVar4); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); } /** @@ -1097,7 +1097,7 @@ public void setLongVar4(long newLongVar4) { * @generated */ public long getLongVar5() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); } /** @@ -1106,7 +1106,7 @@ public long getLongVar5() { * @generated */ public void setLongVar5(long newLongVar5) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, newLongVar5); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); } /** @@ -1115,7 +1115,7 @@ public void setLongVar5(long newLongVar5) { * @generated */ public float getFloatVar1() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); } /** @@ -1124,7 +1124,7 @@ public float getFloatVar1() { * @generated */ public void setFloatVar1(float newFloatVar1) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, newFloatVar1); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); } /** @@ -1133,7 +1133,7 @@ public void setFloatVar1(float newFloatVar1) { * @generated */ public float getFloatVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); } /** @@ -1142,7 +1142,7 @@ public float getFloatVar2() { * @generated */ public void setFloatVar2(float newFloatVar2) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, newFloatVar2); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); } /** @@ -1151,7 +1151,7 @@ public void setFloatVar2(float newFloatVar2) { * @generated */ public float getFloatVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); } /** @@ -1160,7 +1160,7 @@ public float getFloatVar3() { * @generated */ public void setFloatVar3(float newFloatVar3) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, newFloatVar3); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); } /** @@ -1169,7 +1169,7 @@ public void setFloatVar3(float newFloatVar3) { * @generated */ public float getFloatVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); } /** @@ -1178,7 +1178,7 @@ public float getFloatVar4() { * @generated */ public void setFloatVar4(float newFloatVar4) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, newFloatVar4); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); } /** @@ -1187,7 +1187,7 @@ public void setFloatVar4(float newFloatVar4) { * @generated */ public float getFloatVar5() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); } /** @@ -1196,7 +1196,7 @@ public float getFloatVar5() { * @generated */ public void setFloatVar5(float newFloatVar5) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, newFloatVar5); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); } /** @@ -1205,7 +1205,7 @@ public void setFloatVar5(float newFloatVar5) { * @generated */ public double getDoubleVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); } /** @@ -1214,7 +1214,7 @@ public double getDoubleVar1() { * @generated */ public void setDoubleVar1(double newDoubleVar1) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, newDoubleVar1); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); } /** @@ -1223,7 +1223,7 @@ public void setDoubleVar1(double newDoubleVar1) { * @generated */ public double getDoubleVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); } /** @@ -1232,7 +1232,7 @@ public double getDoubleVar2() { * @generated */ public void setDoubleVar2(double newDoubleVar2) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, newDoubleVar2); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); } /** @@ -1241,7 +1241,7 @@ public void setDoubleVar2(double newDoubleVar2) { * @generated */ public double getDoubleVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); } /** @@ -1250,7 +1250,7 @@ public double getDoubleVar3() { * @generated */ public void setDoubleVar3(double newDoubleVar3) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, newDoubleVar3); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); } /** @@ -1259,7 +1259,7 @@ public void setDoubleVar3(double newDoubleVar3) { * @generated */ public double getDoubleVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); } /** @@ -1268,7 +1268,7 @@ public double getDoubleVar4() { * @generated */ public void setDoubleVar4(double newDoubleVar4) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, newDoubleVar4); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); } /** @@ -1277,7 +1277,7 @@ public void setDoubleVar4(double newDoubleVar4) { * @generated */ public double getDoubleVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); } /** @@ -1286,7 +1286,7 @@ public double getDoubleVar5() { * @generated */ public void setDoubleVar5(double newDoubleVar5) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, newDoubleVar5); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); } /** @@ -1295,7 +1295,7 @@ public void setDoubleVar5(double newDoubleVar5) { * @generated */ public boolean isBooleanVar1() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); } /** @@ -1304,7 +1304,7 @@ public boolean isBooleanVar1() { * @generated */ public void setBooleanVar1(boolean newBooleanVar1) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, newBooleanVar1); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); } /** @@ -1313,7 +1313,7 @@ public void setBooleanVar1(boolean newBooleanVar1) { * @generated */ public boolean isBooleanVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); } /** @@ -1322,7 +1322,7 @@ public boolean isBooleanVar2() { * @generated */ public void setBooleanVar2(boolean newBooleanVar2) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, newBooleanVar2); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); } /** @@ -1331,7 +1331,7 @@ public void setBooleanVar2(boolean newBooleanVar2) { * @generated */ public boolean isBooleanVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); } /** @@ -1340,7 +1340,7 @@ public boolean isBooleanVar3() { * @generated */ public void setBooleanVar3(boolean newBooleanVar3) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, newBooleanVar3); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); } /** @@ -1349,7 +1349,7 @@ public void setBooleanVar3(boolean newBooleanVar3) { * @generated */ public boolean isBooleanVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); } /** @@ -1358,7 +1358,7 @@ public boolean isBooleanVar4() { * @generated */ public void setBooleanVar4(boolean newBooleanVar4) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, newBooleanVar4); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); } /** @@ -1367,7 +1367,7 @@ public void setBooleanVar4(boolean newBooleanVar4) { * @generated */ public boolean isBooleanVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); } /** @@ -1376,7 +1376,7 @@ public boolean isBooleanVar5() { * @generated */ public void setBooleanVar5(boolean newBooleanVar5) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, newBooleanVar5); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); } /** @@ -1385,7 +1385,7 @@ public void setBooleanVar5(boolean newBooleanVar5) { * @generated */ public String getStringVar1() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); } /** @@ -1394,7 +1394,7 @@ public String getStringVar1() { * @generated */ public void setStringVar1(String newStringVar1) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, newStringVar1); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); } /** @@ -1403,7 +1403,7 @@ public void setStringVar1(String newStringVar1) { * @generated */ public String getStringVar2() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); } /** @@ -1412,7 +1412,7 @@ public String getStringVar2() { * @generated */ public void setStringVar2(String newStringVar2) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, newStringVar2); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); } /** @@ -1421,7 +1421,7 @@ public void setStringVar2(String newStringVar2) { * @generated */ public String getStringVar3() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); } /** @@ -1430,7 +1430,7 @@ public String getStringVar3() { * @generated */ public void setStringVar3(String newStringVar3) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, newStringVar3); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); } /** @@ -1439,7 +1439,7 @@ public void setStringVar3(String newStringVar3) { * @generated */ public String getStringVar4() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); } /** @@ -1448,7 +1448,7 @@ public String getStringVar4() { * @generated */ public void setStringVar4(String newStringVar4) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, newStringVar4); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); } /** @@ -1457,7 +1457,7 @@ public void setStringVar4(String newStringVar4) { * @generated */ public String getStringVar5() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); } /** @@ -1466,7 +1466,7 @@ public String getStringVar5() { * @generated */ public void setStringVar5(String newStringVar5) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, newStringVar5); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); } /** @@ -1477,7 +1477,7 @@ public void setStringVar5(String newStringVar5) { @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); @@ -1491,103 +1491,103 @@ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested(); - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: return getName(); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return getId(); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return getContents(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1(); - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2(); - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3(); - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4(); - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5(); - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1(); - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2(); - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3(); - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4(); - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5(); - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1(); - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2(); - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3(); - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4(); - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5(); - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1(); - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2(); - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3(); - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4(); - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5(); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1(); - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2(); - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3(); - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4(); - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5(); - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1(); - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2(); - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3(); - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4(); - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5(); - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1(); - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2(); - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3(); - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4(); - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5(); - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1(); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2(); - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3(); - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4(); - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5(); - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return getStringVar1(); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return getStringVar2(); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return getStringVar3(); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return getStringVar4(); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return getStringVar5(); } return super.eGet(featureID, resolve, coreType); @@ -1602,152 +1602,152 @@ public Object eGet(int featureID, boolean resolve, boolean coreType) { @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested((Boolean)newValue); return; - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: setName((String)newValue); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId((String)newValue); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); getContents().addAll((Collection)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5((Byte)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5((Short)newValue); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5((Character)newValue); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5((Long)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5((Float)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5((Double)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5((String)newValue); return; } @@ -1762,151 +1762,151 @@ public void eSet(int featureID, Object newValue) { @Override public void eUnset(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested(TESTED_EDEFAULT); return; - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: setName(NAME_EDEFAULT); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId(ID_EDEFAULT); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1(BYTE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2(BYTE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3(BYTE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4(BYTE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5(BYTE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1(SHORT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2(SHORT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3(SHORT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4(SHORT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5(SHORT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1(INT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2(INT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3(INT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4(INT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5(INT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1(CHAR_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2(CHAR_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3(CHAR_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4(CHAR_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5(CHAR_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1(LONG_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2(LONG_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3(LONG_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4(LONG_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5(LONG_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1(FLOAT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2(FLOAT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3(FLOAT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4(FLOAT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5(FLOAT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1(DOUBLE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2(DOUBLE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3(DOUBLE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4(DOUBLE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5(DOUBLE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1(STRING_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2(STRING_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3(STRING_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4(STRING_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5(STRING_VAR5_EDEFAULT); return; } @@ -1921,103 +1921,103 @@ public void eUnset(int featureID) { @Override public boolean eIsSet(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested() != TESTED_EDEFAULT; - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: return NAME_EDEFAULT == null ? getName() != null : !NAME_EDEFAULT.equals(getName()); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return !getContents().isEmpty(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1() != BYTE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2() != BYTE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3() != BYTE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4() != BYTE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5() != BYTE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1() != SHORT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2() != SHORT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3() != SHORT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4() != SHORT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5() != SHORT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1() != INT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2() != INT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3() != INT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4() != INT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5() != INT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1() != CHAR_VAR1_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2() != CHAR_VAR2_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3() != CHAR_VAR3_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4() != CHAR_VAR4_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5() != CHAR_VAR5_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1() != LONG_VAR1_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2() != LONG_VAR2_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3() != LONG_VAR3_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4() != LONG_VAR4_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5() != LONG_VAR5_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1() != FLOAT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2() != FLOAT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3() != FLOAT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4() != FLOAT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5() != FLOAT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1() != BOOLEAN_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return STRING_VAR1_EDEFAULT == null ? getStringVar1() != null : !STRING_VAR1_EDEFAULT.equals(getStringVar1()); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return STRING_VAR2_EDEFAULT == null ? getStringVar2() != null : !STRING_VAR2_EDEFAULT.equals(getStringVar2()); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return STRING_VAR3_EDEFAULT == null ? getStringVar3() != null : !STRING_VAR3_EDEFAULT.equals(getStringVar3()); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return STRING_VAR4_EDEFAULT == null ? getStringVar4() != null : !STRING_VAR4_EDEFAULT.equals(getStringVar4()); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return STRING_VAR5_EDEFAULT == null ? getStringVar5() != null : !STRING_VAR5_EDEFAULT.equals(getStringVar5()); } return super.eIsSet(featureID); @@ -2032,13 +2032,13 @@ public boolean eIsSet(int featureID) { public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == INamed.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__NAME: return BasePackage.INAMED__NAME; + case ArtefactPackage.SKETCH__NAME: return BasePackage.INAMED__NAME; default: return -1; } } if (baseClass == IID.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__ID: return BasePackage.IID__ID; + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; default: return -1; } } @@ -2049,7 +2049,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; default: return -1; } } @@ -2065,13 +2065,13 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == INamed.class) { switch (baseFeatureID) { - case BasePackage.INAMED__NAME: return ArtefactPackage.FILE__NAME; + case BasePackage.INAMED__NAME: return ArtefactPackage.SKETCH__NAME; default: return -1; } } if (baseClass == IID.class) { switch (baseFeatureID) { - case BasePackage.IID__ID: return ArtefactPackage.FILE__ID; + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; default: return -1; } } @@ -2082,11 +2082,11 @@ public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (baseFeatureID) { - case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.FILE__CONTENTS; + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } -} //FileImpl +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactAdapterFactory.java index fe4ae7066..30f2243ca 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -79,8 +79,8 @@ public Adapter caseDiagram(Diagram object) { return createDiagramAdapter(); } @Override - public Adapter caseFile(File object) { - return createFileAdapter(); + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); } @Override public Adapter caseITestable(ITestable object) { @@ -141,16 +141,16 @@ public Adapter createDiagramAdapter() { } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.File File}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch Sketch}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.attributeadded.testmodel.artefact.File + * @see com.specmate.migration.test.attributeadded.testmodel.artefact.Sketch * @generated */ - public Adapter createFileAdapter() { + public Adapter createSketchAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactSwitch.java index 1b73b3d85..af629bba4 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/ArtefactSwitch.java @@ -85,15 +85,15 @@ protected T doSwitch(int classifierID, EObject theEObject) { if (result == null) result = defaultCase(theEObject); return result; } - case ArtefactPackage.FILE: { - File file = (File)theEObject; - T result = caseFile(file); - if (result == null) result = caseIModifiable(file); - if (result == null) result = caseIContainer(file); - if (result == null) result = caseITestable(file); - if (result == null) result = caseIContentElement(file); - if (result == null) result = caseINamed(file); - if (result == null) result = caseIID(file); + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseINamed(sketch); + if (result == null) result = caseIID(sketch); if (result == null) result = defaultCase(theEObject); return result; } @@ -117,17 +117,17 @@ public T caseDiagram(Diagram object) { } /** - * Returns the result of interpreting the object as an instance of 'File'. + * Returns the result of interpreting the object as an instance of 'Sketch'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'File'. + * @return the result of interpreting the object as an instance of 'Sketch'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseFile(File object) { + public T caseSketch(Sketch object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/packageinfo b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/packageinfo deleted file mode 100644 index 9ad81f6fa..000000000 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/artefact/util/packageinfo +++ /dev/null @@ -1 +0,0 @@ -version 1.0.0 diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/BasePackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/BasePackage.java index 7374a514b..33eba4f36 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/BasePackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/BasePackage.java @@ -56,16 +56,6 @@ public interface BasePackage extends EPackage { */ BasePackage eINSTANCE = com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl.init(); - /** - * The meta object id for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}' class. - * - * - * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed - * @see com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl#getINamed() - * @generated - */ - int INAMED = 1; - /** * The meta object id for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}' class. * @@ -103,6 +93,16 @@ public interface BasePackage extends EPackage { */ int IID_OPERATION_COUNT = 0; + /** + * The meta object id for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}' class. + * + * + * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed + * @see com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl#getINamed() + * @generated + */ + int INAMED = 1; + /** * The feature id for the 'Name' attribute. * @@ -362,46 +362,46 @@ public interface BasePackage extends EPackage { /** - * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}'. + * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}'. * * - * @return the meta object for class 'INamed'. - * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed + * @return the meta object for class 'IID'. + * @see com.specmate.migration.test.attributeadded.testmodel.base.IID * @generated */ - EClass getINamed(); + EClass getIID(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed#getName Name}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID#getId Id}'. * * - * @return the meta object for the attribute 'Name'. - * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed#getName() - * @see #getINamed() + * @return the meta object for the attribute 'Id'. + * @see com.specmate.migration.test.attributeadded.testmodel.base.IID#getId() + * @see #getIID() * @generated */ - EAttribute getINamed_Name(); + EAttribute getIID_Id(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}'. + * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}'. * * - * @return the meta object for class 'IID'. - * @see com.specmate.migration.test.attributeadded.testmodel.base.IID + * @return the meta object for class 'INamed'. + * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed * @generated */ - EClass getIID(); + EClass getINamed(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID#getId Id}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed#getName Name}'. * * - * @return the meta object for the attribute 'Id'. - * @see com.specmate.migration.test.attributeadded.testmodel.base.IID#getId() - * @see #getIID() + * @return the meta object for the attribute 'Name'. + * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed#getName() + * @see #getINamed() * @generated */ - EAttribute getIID_Id(); + EAttribute getINamed_Name(); /** * Returns the meta object for class '{@link com.specmate.migration.test.attributeadded.testmodel.base.IContentElement IContent Element}'. @@ -499,40 +499,40 @@ public interface BasePackage extends EPackage { */ interface Literals { /** - * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}' class. + * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}' class. * * - * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed - * @see com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl#getINamed() + * @see com.specmate.migration.test.attributeadded.testmodel.base.IID + * @see com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl#getIID() * @generated */ - EClass INAMED = eINSTANCE.getINamed(); + EClass IID = eINSTANCE.getIID(); /** - * The meta object literal for the 'Name' attribute feature. + * The meta object literal for the 'Id' attribute feature. * * * @generated */ - EAttribute INAMED__NAME = eINSTANCE.getINamed_Name(); + EAttribute IID__ID = eINSTANCE.getIID_Id(); /** - * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}' class. + * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}' class. * * - * @see com.specmate.migration.test.attributeadded.testmodel.base.IID - * @see com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl#getIID() + * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed + * @see com.specmate.migration.test.attributeadded.testmodel.base.impl.BasePackageImpl#getINamed() * @generated */ - EClass IID = eINSTANCE.getIID(); + EClass INAMED = eINSTANCE.getINamed(); /** - * The meta object literal for the 'Id' attribute feature. + * The meta object literal for the 'Name' attribute feature. * * * @generated */ - EAttribute IID__ID = eINSTANCE.getIID_Id(); + EAttribute INAMED__NAME = eINSTANCE.getINamed_Name(); /** * The meta object literal for the '{@link com.specmate.migration.test.attributeadded.testmodel.base.IContentElement IContent Element}' class. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/BasePackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/BasePackageImpl.java index b5db30328..b2f78efb6 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/BasePackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/BasePackageImpl.java @@ -34,14 +34,14 @@ public class BasePackageImpl extends EPackageImpl implements BasePackage { * * @generated */ - private EClass iNamedEClass = null; + private EClass iidEClass = null; /** * * * @generated */ - private EClass iidEClass = null; + private EClass iNamedEClass = null; /** * @@ -149,8 +149,8 @@ public static BasePackage init() { * * @generated */ - public EClass getINamed() { - return iNamedEClass; + public EClass getIID() { + return iidEClass; } /** @@ -158,8 +158,8 @@ public EClass getINamed() { * * @generated */ - public EAttribute getINamed_Name() { - return (EAttribute)iNamedEClass.getEStructuralFeatures().get(0); + public EAttribute getIID_Id() { + return (EAttribute)iidEClass.getEStructuralFeatures().get(0); } /** @@ -167,8 +167,8 @@ public EAttribute getINamed_Name() { * * @generated */ - public EClass getIID() { - return iidEClass; + public EClass getINamed() { + return iNamedEClass; } /** @@ -176,8 +176,8 @@ public EClass getIID() { * * @generated */ - public EAttribute getIID_Id() { - return (EAttribute)iidEClass.getEStructuralFeatures().get(0); + public EAttribute getINamed_Name() { + return (EAttribute)iNamedEClass.getEStructuralFeatures().get(0); } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/FolderImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/FolderImpl.java index 026dedbfc..509bda6ae 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/FolderImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/FolderImpl.java @@ -5,8 +5,8 @@ import com.specmate.migration.test.attributeadded.testmodel.base.BasePackage; import com.specmate.migration.test.attributeadded.testmodel.base.Folder; import com.specmate.migration.test.attributeadded.testmodel.base.IContentElement; - import com.specmate.migration.test.attributeadded.testmodel.base.IID; + import java.util.Collection; import org.eclipse.emf.common.notify.NotificationChain; diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/packageinfo b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/packageinfo deleted file mode 100644 index 9ad81f6fa..000000000 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/impl/packageinfo +++ /dev/null @@ -1 +0,0 @@ -version 1.0.0 diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/packageinfo b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/packageinfo deleted file mode 100644 index 9ad81f6fa..000000000 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/packageinfo +++ /dev/null @@ -1 +0,0 @@ -version 1.0.0 diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseAdapterFactory.java index 2b95051e0..0921e3338 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseAdapterFactory.java @@ -116,30 +116,30 @@ public Adapter createAdapter(Notifier target) { /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed + * @see com.specmate.migration.test.attributeadded.testmodel.base.IID * @generated */ - public Adapter createINamedAdapter() { + public Adapter createIIDAdapter() { return null; } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributeadded.testmodel.base.IID IID}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributeadded.testmodel.base.INamed INamed}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.attributeadded.testmodel.base.IID + * @see com.specmate.migration.test.attributeadded.testmodel.base.INamed * @generated */ - public Adapter createIIDAdapter() { + public Adapter createINamedAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseSwitch.java index 647e9f3b5..083b669f5 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/BaseSwitch.java @@ -123,32 +123,32 @@ protected T doSwitch(int classifierID, EObject theEObject) { } /** - * Returns the result of interpreting the object as an instance of 'INamed'. + * Returns the result of interpreting the object as an instance of 'IID'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'INamed'. + * @return the result of interpreting the object as an instance of 'IID'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseINamed(INamed object) { + public T caseIID(IID object) { return null; } /** - * Returns the result of interpreting the object as an instance of 'IID'. + * Returns the result of interpreting the object as an instance of 'INamed'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'IID'. + * @return the result of interpreting the object as an instance of 'INamed'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseIID(IID object) { + public T caseINamed(INamed object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/packageinfo b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/packageinfo deleted file mode 100644 index 9ad81f6fa..000000000 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributeadded/testmodel/base/util/packageinfo +++ /dev/null @@ -1 +0,0 @@ -version 1.0.0 diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactFactory.java index ef1c92ee1..752463164 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactFactory.java @@ -31,13 +31,13 @@ public interface ArtefactFactory extends EFactory { Diagram createDiagram(); /** - * Returns a new object of class 'File'. + * Returns a new object of class 'Sketch'. * * - * @return a new object of class 'File'. + * @return a new object of class 'Sketch'. * @generated */ - File createFile(); + Sketch createSketch(); /** * Returns the package supported by this factory. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactPackage.java index fcb3ea8cc..d6aeaed0e 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactPackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/ArtefactPackage.java @@ -112,16 +112,15 @@ public interface ArtefactPackage extends EPackage { */ int DIAGRAM_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; - /** - * The meta object id for the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl File}' class. + * The meta object id for the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - int FILE = 1; + int SKETCH = 1; /** * The feature id for the 'Istested' attribute. @@ -130,7 +129,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ISTESTED = BasePackage.IMODIFIABLE__ISTESTED; + int SKETCH__ISTESTED = BasePackage.IMODIFIABLE__ISTESTED; /** * The feature id for the 'Id' attribute. @@ -139,7 +138,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; /** * The feature id for the 'Contents' containment reference list. @@ -148,7 +147,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; /** * The feature id for the 'Byte Var1' attribute. @@ -157,7 +156,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; /** * The feature id for the 'Byte Var2' attribute. @@ -166,7 +165,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; /** * The feature id for the 'Byte Var3' attribute. @@ -175,7 +174,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; /** * The feature id for the 'Byte Var4' attribute. @@ -184,7 +183,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; /** * The feature id for the 'Byte Var5' attribute. @@ -193,7 +192,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; /** * The feature id for the 'Short Var1' attribute. @@ -202,7 +201,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; /** * The feature id for the 'Short Var2' attribute. @@ -211,7 +210,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; /** * The feature id for the 'Short Var3' attribute. @@ -220,7 +219,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; /** * The feature id for the 'Short Var4' attribute. @@ -229,7 +228,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; /** * The feature id for the 'Short Var5' attribute. @@ -238,7 +237,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; /** * The feature id for the 'Int Var1' attribute. @@ -247,7 +246,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; /** * The feature id for the 'Int Var2' attribute. @@ -256,7 +255,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; /** * The feature id for the 'Int Var3' attribute. @@ -265,7 +264,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; /** * The feature id for the 'Int Var4' attribute. @@ -274,7 +273,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; /** * The feature id for the 'Int Var5' attribute. @@ -283,7 +282,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; /** * The feature id for the 'Char Var1' attribute. @@ -292,7 +291,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; /** * The feature id for the 'Char Var2' attribute. @@ -301,7 +300,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; /** * The feature id for the 'Char Var3' attribute. @@ -310,7 +309,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; /** * The feature id for the 'Char Var4' attribute. @@ -319,7 +318,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; /** * The feature id for the 'Char Var5' attribute. @@ -328,7 +327,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; /** * The feature id for the 'Long Var1' attribute. @@ -337,7 +336,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; /** * The feature id for the 'Long Var2' attribute. @@ -346,7 +345,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; /** * The feature id for the 'Long Var3' attribute. @@ -355,7 +354,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; /** * The feature id for the 'Long Var4' attribute. @@ -364,7 +363,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; /** * The feature id for the 'Long Var5' attribute. @@ -373,7 +372,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; /** * The feature id for the 'Float Var1' attribute. @@ -382,7 +381,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; /** * The feature id for the 'Float Var2' attribute. @@ -391,7 +390,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; /** * The feature id for the 'Float Var3' attribute. @@ -400,7 +399,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; /** * The feature id for the 'Float Var4' attribute. @@ -409,7 +408,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; /** * The feature id for the 'Float Var5' attribute. @@ -418,7 +417,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; /** * The feature id for the 'Double Var1' attribute. @@ -427,7 +426,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; /** * The feature id for the 'Double Var2' attribute. @@ -436,7 +435,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; /** * The feature id for the 'Double Var3' attribute. @@ -445,7 +444,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; /** * The feature id for the 'Double Var4' attribute. @@ -454,7 +453,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; /** * The feature id for the 'Double Var5' attribute. @@ -463,7 +462,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; /** * The feature id for the 'Boolean Var1' attribute. @@ -472,7 +471,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; /** * The feature id for the 'Boolean Var2' attribute. @@ -481,7 +480,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; /** * The feature id for the 'Boolean Var3' attribute. @@ -490,7 +489,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; /** * The feature id for the 'Boolean Var4' attribute. @@ -499,7 +498,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; /** * The feature id for the 'Boolean Var5' attribute. @@ -508,7 +507,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; /** * The feature id for the 'String Var1' attribute. @@ -517,7 +516,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; /** * The feature id for the 'String Var2' attribute. @@ -526,7 +525,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; /** * The feature id for the 'String Var3' attribute. @@ -535,7 +534,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; /** * The feature id for the 'String Var4' attribute. @@ -544,7 +543,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; /** * The feature id for the 'String Var5' attribute. @@ -553,25 +552,25 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; /** - * The number of structural features of the 'File' class. + * The number of structural features of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; /** - * The number of operations of the 'File' class. + * The number of operations of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** @@ -585,509 +584,509 @@ public interface ArtefactPackage extends EPackage { EClass getDiagram(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File File}'. + * Returns the meta object for class '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch Sketch}'. * * - * @return the meta object for class 'File'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch * @generated */ - EClass getFile(); + EClass getSketch(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar1 Byte Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. * * * @return the meta object for the attribute 'Byte Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar1(); + EAttribute getSketch_ByteVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar2 Byte Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. * * * @return the meta object for the attribute 'Byte Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar2(); + EAttribute getSketch_ByteVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar3 Byte Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. * * * @return the meta object for the attribute 'Byte Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar3(); + EAttribute getSketch_ByteVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar4 Byte Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. * * * @return the meta object for the attribute 'Byte Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar4(); + EAttribute getSketch_ByteVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar5 Byte Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. * * * @return the meta object for the attribute 'Byte Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar5(); + EAttribute getSketch_ByteVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar1 Short Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. * * * @return the meta object for the attribute 'Short Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar1(); + EAttribute getSketch_ShortVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar2 Short Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. * * * @return the meta object for the attribute 'Short Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar2(); + EAttribute getSketch_ShortVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar3 Short Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. * * * @return the meta object for the attribute 'Short Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar3(); + EAttribute getSketch_ShortVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar4 Short Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. * * * @return the meta object for the attribute 'Short Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar4(); + EAttribute getSketch_ShortVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar5 Short Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. * * * @return the meta object for the attribute 'Short Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar5(); + EAttribute getSketch_ShortVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar1 Int Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. * * * @return the meta object for the attribute 'Int Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar1(); + EAttribute getSketch_IntVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar2 Int Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. * * * @return the meta object for the attribute 'Int Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar2(); + EAttribute getSketch_IntVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar3 Int Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. * * * @return the meta object for the attribute 'Int Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar3(); + EAttribute getSketch_IntVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar4 Int Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. * * * @return the meta object for the attribute 'Int Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar4(); + EAttribute getSketch_IntVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar5 Int Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. * * * @return the meta object for the attribute 'Int Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar5(); + EAttribute getSketch_IntVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar1 Char Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. * * * @return the meta object for the attribute 'Char Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar1(); + EAttribute getSketch_CharVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar2 Char Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. * * * @return the meta object for the attribute 'Char Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar2(); + EAttribute getSketch_CharVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar3 Char Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. * * * @return the meta object for the attribute 'Char Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar3(); + EAttribute getSketch_CharVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar4 Char Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. * * * @return the meta object for the attribute 'Char Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar4(); + EAttribute getSketch_CharVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar5 Char Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. * * * @return the meta object for the attribute 'Char Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar5(); + EAttribute getSketch_CharVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar1 Long Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. * * * @return the meta object for the attribute 'Long Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar1(); + EAttribute getSketch_LongVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar2 Long Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. * * * @return the meta object for the attribute 'Long Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar2(); + EAttribute getSketch_LongVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar3 Long Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. * * * @return the meta object for the attribute 'Long Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar3(); + EAttribute getSketch_LongVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar4 Long Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. * * * @return the meta object for the attribute 'Long Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar4(); + EAttribute getSketch_LongVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar5 Long Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. * * * @return the meta object for the attribute 'Long Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar5(); + EAttribute getSketch_LongVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar1 Float Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. * * * @return the meta object for the attribute 'Float Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar1(); + EAttribute getSketch_FloatVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar2 Float Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. * * * @return the meta object for the attribute 'Float Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar2(); + EAttribute getSketch_FloatVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar3 Float Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. * * * @return the meta object for the attribute 'Float Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar3(); + EAttribute getSketch_FloatVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar4 Float Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. * * * @return the meta object for the attribute 'Float Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar4(); + EAttribute getSketch_FloatVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar5 Float Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. * * * @return the meta object for the attribute 'Float Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar5(); + EAttribute getSketch_FloatVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar1 Double Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. * * * @return the meta object for the attribute 'Double Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar1(); + EAttribute getSketch_DoubleVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar2 Double Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. * * * @return the meta object for the attribute 'Double Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar2(); + EAttribute getSketch_DoubleVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar3 Double Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. * * * @return the meta object for the attribute 'Double Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar3(); + EAttribute getSketch_DoubleVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar4 Double Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. * * * @return the meta object for the attribute 'Double Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar4(); + EAttribute getSketch_DoubleVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar5 Double Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. * * * @return the meta object for the attribute 'Double Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar5(); + EAttribute getSketch_DoubleVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar1 Boolean Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}'. * * * @return the meta object for the attribute 'Boolean Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar1(); + EAttribute getSketch_BooleanVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar2 Boolean Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. * * * @return the meta object for the attribute 'Boolean Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar2(); + EAttribute getSketch_BooleanVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar3 Boolean Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. * * * @return the meta object for the attribute 'Boolean Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar3(); + EAttribute getSketch_BooleanVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar4 Boolean Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. * * * @return the meta object for the attribute 'Boolean Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar4(); + EAttribute getSketch_BooleanVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar5 Boolean Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. * * * @return the meta object for the attribute 'Boolean Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar5(); + EAttribute getSketch_BooleanVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar1 String Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar1 String Var1}'. * * * @return the meta object for the attribute 'String Var1'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar1() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar1(); + EAttribute getSketch_StringVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar2 String Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar2 String Var2}'. * * * @return the meta object for the attribute 'String Var2'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar2() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar2(); + EAttribute getSketch_StringVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar3 String Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar3 String Var3}'. * * * @return the meta object for the attribute 'String Var3'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar3() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar3(); + EAttribute getSketch_StringVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar4 String Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar4 String Var4}'. * * * @return the meta object for the attribute 'String Var4'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar4() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar4(); + EAttribute getSketch_StringVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar5 String Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar5 String Var5}'. * * * @return the meta object for the attribute 'String Var5'. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar5() - * @see #getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar5(); + EAttribute getSketch_StringVar5(); /** * Returns the factory that creates the instances of the model. @@ -1121,330 +1120,376 @@ interface Literals { * @generated */ EClass DIAGRAM = eINSTANCE.getDiagram(); + /** - * The meta object literal for the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl File}' class. + * The meta object literal for the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - EClass FILE = eINSTANCE.getFile(); + EClass SKETCH = eINSTANCE.getSketch(); + /** * The meta object literal for the 'Byte Var1' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR1 = eINSTANCE.getFile_ByteVar1(); + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); + /** * The meta object literal for the 'Byte Var2' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR2 = eINSTANCE.getFile_ByteVar2(); + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); + /** * The meta object literal for the 'Byte Var3' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR3 = eINSTANCE.getFile_ByteVar3(); + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); + /** * The meta object literal for the 'Byte Var4' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR4 = eINSTANCE.getFile_ByteVar4(); + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); + /** * The meta object literal for the 'Byte Var5' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR5 = eINSTANCE.getFile_ByteVar5(); + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); + /** * The meta object literal for the 'Short Var1' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR1 = eINSTANCE.getFile_ShortVar1(); + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); + /** * The meta object literal for the 'Short Var2' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR2 = eINSTANCE.getFile_ShortVar2(); + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); + /** * The meta object literal for the 'Short Var3' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR3 = eINSTANCE.getFile_ShortVar3(); + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); + /** * The meta object literal for the 'Short Var4' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR4 = eINSTANCE.getFile_ShortVar4(); + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); + /** * The meta object literal for the 'Short Var5' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR5 = eINSTANCE.getFile_ShortVar5(); + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); + /** * The meta object literal for the 'Int Var1' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR1 = eINSTANCE.getFile_IntVar1(); + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); + /** * The meta object literal for the 'Int Var2' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR2 = eINSTANCE.getFile_IntVar2(); + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); + /** * The meta object literal for the 'Int Var3' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR3 = eINSTANCE.getFile_IntVar3(); + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); + /** * The meta object literal for the 'Int Var4' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR4 = eINSTANCE.getFile_IntVar4(); + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); + /** * The meta object literal for the 'Int Var5' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR5 = eINSTANCE.getFile_IntVar5(); + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); + /** * The meta object literal for the 'Char Var1' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR1 = eINSTANCE.getFile_CharVar1(); + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); + /** * The meta object literal for the 'Char Var2' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR2 = eINSTANCE.getFile_CharVar2(); + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); + /** * The meta object literal for the 'Char Var3' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR3 = eINSTANCE.getFile_CharVar3(); + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); + /** * The meta object literal for the 'Char Var4' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR4 = eINSTANCE.getFile_CharVar4(); + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); + /** * The meta object literal for the 'Char Var5' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR5 = eINSTANCE.getFile_CharVar5(); + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); + /** * The meta object literal for the 'Long Var1' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR1 = eINSTANCE.getFile_LongVar1(); + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); + /** * The meta object literal for the 'Long Var2' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR2 = eINSTANCE.getFile_LongVar2(); + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); + /** * The meta object literal for the 'Long Var3' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR3 = eINSTANCE.getFile_LongVar3(); + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); + /** * The meta object literal for the 'Long Var4' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR4 = eINSTANCE.getFile_LongVar4(); + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); + /** * The meta object literal for the 'Long Var5' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR5 = eINSTANCE.getFile_LongVar5(); + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); + /** * The meta object literal for the 'Float Var1' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR1 = eINSTANCE.getFile_FloatVar1(); + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); + /** * The meta object literal for the 'Float Var2' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR2 = eINSTANCE.getFile_FloatVar2(); + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); + /** * The meta object literal for the 'Float Var3' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR3 = eINSTANCE.getFile_FloatVar3(); + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); + /** * The meta object literal for the 'Float Var4' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR4 = eINSTANCE.getFile_FloatVar4(); + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); + /** * The meta object literal for the 'Float Var5' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR5 = eINSTANCE.getFile_FloatVar5(); + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); + /** * The meta object literal for the 'Double Var1' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR1 = eINSTANCE.getFile_DoubleVar1(); + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); + /** * The meta object literal for the 'Double Var2' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR2 = eINSTANCE.getFile_DoubleVar2(); + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); + /** * The meta object literal for the 'Double Var3' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR3 = eINSTANCE.getFile_DoubleVar3(); + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); + /** * The meta object literal for the 'Double Var4' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR4 = eINSTANCE.getFile_DoubleVar4(); + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); + /** * The meta object literal for the 'Double Var5' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR5 = eINSTANCE.getFile_DoubleVar5(); + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); + /** * The meta object literal for the 'Boolean Var1' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR1 = eINSTANCE.getFile_BooleanVar1(); + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); + /** * The meta object literal for the 'Boolean Var2' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR2 = eINSTANCE.getFile_BooleanVar2(); + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); + /** * The meta object literal for the 'Boolean Var3' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR3 = eINSTANCE.getFile_BooleanVar3(); + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); + /** * The meta object literal for the 'Boolean Var4' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR4 = eINSTANCE.getFile_BooleanVar4(); + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); + /** * The meta object literal for the 'Boolean Var5' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR5 = eINSTANCE.getFile_BooleanVar5(); + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); + /** * The meta object literal for the 'String Var1' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR1 = eINSTANCE.getFile_StringVar1(); + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); + /** * The meta object literal for the 'String Var2' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR2 = eINSTANCE.getFile_StringVar2(); + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); + /** * The meta object literal for the 'String Var3' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR3 = eINSTANCE.getFile_StringVar3(); + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); + /** * The meta object literal for the 'String Var4' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR4 = eINSTANCE.getFile_StringVar4(); + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); + /** * The meta object literal for the 'String Var5' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR5 = eINSTANCE.getFile_StringVar5(); + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/File.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/Sketch.java similarity index 81% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/File.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/Sketch.java index aebe8dd92..1d52b1bde 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/File.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/Sketch.java @@ -7,65 +7,65 @@ /** * - * A representation of the model object 'File'. + * A representation of the model object 'Sketch'. * * *

* The following features are supported: *

*
    - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar5 String Var5}
  • *
* - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch() * @model * @generated */ -public interface File extends IModifiable, IContainer { +public interface Sketch extends IModifiable, IContainer { /** * Returns the value of the 'Byte Var1' attribute. * @@ -76,14 +76,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var1' attribute. * @see #setByteVar1(byte) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ByteVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() * @model * @generated */ byte getByteVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar1 Byte Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. * * * @param value the new value of the 'Byte Var1' attribute. @@ -102,14 +102,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var2' attribute. * @see #setByteVar2(byte) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ByteVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() * @model * @generated */ byte getByteVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar2 Byte Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. * * * @param value the new value of the 'Byte Var2' attribute. @@ -128,14 +128,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var3' attribute. * @see #setByteVar3(byte) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ByteVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() * @model * @generated */ byte getByteVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar3 Byte Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. * * * @param value the new value of the 'Byte Var3' attribute. @@ -154,14 +154,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var4' attribute. * @see #setByteVar4(byte) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ByteVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() * @model * @generated */ byte getByteVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar4 Byte Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. * * * @param value the new value of the 'Byte Var4' attribute. @@ -180,14 +180,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var5' attribute. * @see #setByteVar5(byte) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ByteVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() * @model * @generated */ byte getByteVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getByteVar5 Byte Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. * * * @param value the new value of the 'Byte Var5' attribute. @@ -206,14 +206,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var1' attribute. * @see #setShortVar1(short) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ShortVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() * @model * @generated */ short getShortVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar1 Short Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. * * * @param value the new value of the 'Short Var1' attribute. @@ -232,14 +232,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var2' attribute. * @see #setShortVar2(short) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ShortVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() * @model * @generated */ short getShortVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar2 Short Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. * * * @param value the new value of the 'Short Var2' attribute. @@ -258,14 +258,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var3' attribute. * @see #setShortVar3(short) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ShortVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() * @model * @generated */ short getShortVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar3 Short Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. * * * @param value the new value of the 'Short Var3' attribute. @@ -284,14 +284,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var4' attribute. * @see #setShortVar4(short) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ShortVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() * @model * @generated */ short getShortVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar4 Short Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. * * * @param value the new value of the 'Short Var4' attribute. @@ -310,14 +310,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var5' attribute. * @see #setShortVar5(short) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_ShortVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() * @model * @generated */ short getShortVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getShortVar5 Short Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. * * * @param value the new value of the 'Short Var5' attribute. @@ -336,14 +336,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var1' attribute. * @see #setIntVar1(int) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_IntVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() * @model * @generated */ int getIntVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar1 Int Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. * * * @param value the new value of the 'Int Var1' attribute. @@ -362,14 +362,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var2' attribute. * @see #setIntVar2(int) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_IntVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() * @model * @generated */ int getIntVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar2 Int Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. * * * @param value the new value of the 'Int Var2' attribute. @@ -388,14 +388,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var3' attribute. * @see #setIntVar3(int) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_IntVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() * @model * @generated */ int getIntVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar3 Int Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. * * * @param value the new value of the 'Int Var3' attribute. @@ -414,14 +414,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var4' attribute. * @see #setIntVar4(int) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_IntVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() * @model * @generated */ int getIntVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar4 Int Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. * * * @param value the new value of the 'Int Var4' attribute. @@ -440,14 +440,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var5' attribute. * @see #setIntVar5(int) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_IntVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() * @model * @generated */ int getIntVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getIntVar5 Int Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. * * * @param value the new value of the 'Int Var5' attribute. @@ -466,14 +466,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var1' attribute. * @see #setCharVar1(char) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_CharVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() * @model * @generated */ char getCharVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar1 Char Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. * * * @param value the new value of the 'Char Var1' attribute. @@ -492,14 +492,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var2' attribute. * @see #setCharVar2(char) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_CharVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() * @model * @generated */ char getCharVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar2 Char Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. * * * @param value the new value of the 'Char Var2' attribute. @@ -518,14 +518,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var3' attribute. * @see #setCharVar3(char) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_CharVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() * @model * @generated */ char getCharVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar3 Char Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. * * * @param value the new value of the 'Char Var3' attribute. @@ -544,14 +544,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var4' attribute. * @see #setCharVar4(char) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_CharVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() * @model * @generated */ char getCharVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar4 Char Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. * * * @param value the new value of the 'Char Var4' attribute. @@ -570,14 +570,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var5' attribute. * @see #setCharVar5(char) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_CharVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() * @model * @generated */ char getCharVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getCharVar5 Char Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. * * * @param value the new value of the 'Char Var5' attribute. @@ -596,14 +596,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var1' attribute. * @see #setLongVar1(long) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_LongVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() * @model * @generated */ long getLongVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar1 Long Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. * * * @param value the new value of the 'Long Var1' attribute. @@ -622,14 +622,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var2' attribute. * @see #setLongVar2(long) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_LongVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() * @model * @generated */ long getLongVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar2 Long Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. * * * @param value the new value of the 'Long Var2' attribute. @@ -648,14 +648,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var3' attribute. * @see #setLongVar3(long) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_LongVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() * @model * @generated */ long getLongVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar3 Long Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. * * * @param value the new value of the 'Long Var3' attribute. @@ -674,14 +674,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var4' attribute. * @see #setLongVar4(long) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_LongVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() * @model * @generated */ long getLongVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar4 Long Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. * * * @param value the new value of the 'Long Var4' attribute. @@ -700,14 +700,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var5' attribute. * @see #setLongVar5(long) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_LongVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() * @model * @generated */ long getLongVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getLongVar5 Long Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. * * * @param value the new value of the 'Long Var5' attribute. @@ -726,14 +726,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var1' attribute. * @see #setFloatVar1(float) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_FloatVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() * @model * @generated */ float getFloatVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar1 Float Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. * * * @param value the new value of the 'Float Var1' attribute. @@ -752,14 +752,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var2' attribute. * @see #setFloatVar2(float) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_FloatVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() * @model * @generated */ float getFloatVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar2 Float Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. * * * @param value the new value of the 'Float Var2' attribute. @@ -778,14 +778,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var3' attribute. * @see #setFloatVar3(float) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_FloatVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() * @model * @generated */ float getFloatVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar3 Float Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. * * * @param value the new value of the 'Float Var3' attribute. @@ -804,14 +804,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var4' attribute. * @see #setFloatVar4(float) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_FloatVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() * @model * @generated */ float getFloatVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar4 Float Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. * * * @param value the new value of the 'Float Var4' attribute. @@ -830,14 +830,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var5' attribute. * @see #setFloatVar5(float) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_FloatVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() * @model * @generated */ float getFloatVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getFloatVar5 Float Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. * * * @param value the new value of the 'Float Var5' attribute. @@ -856,14 +856,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var1' attribute. * @see #setDoubleVar1(double) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_DoubleVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() * @model * @generated */ double getDoubleVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar1 Double Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. * * * @param value the new value of the 'Double Var1' attribute. @@ -882,14 +882,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var2' attribute. * @see #setDoubleVar2(double) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_DoubleVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() * @model * @generated */ double getDoubleVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar2 Double Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. * * * @param value the new value of the 'Double Var2' attribute. @@ -908,14 +908,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var3' attribute. * @see #setDoubleVar3(double) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_DoubleVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() * @model * @generated */ double getDoubleVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar3 Double Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. * * * @param value the new value of the 'Double Var3' attribute. @@ -934,14 +934,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var4' attribute. * @see #setDoubleVar4(double) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_DoubleVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() * @model * @generated */ double getDoubleVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar4 Double Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. * * * @param value the new value of the 'Double Var4' attribute. @@ -960,14 +960,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var5' attribute. * @see #setDoubleVar5(double) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_DoubleVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() * @model * @generated */ double getDoubleVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getDoubleVar5 Double Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. * * * @param value the new value of the 'Double Var5' attribute. @@ -986,14 +986,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var1' attribute. * @see #setBooleanVar1(boolean) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_BooleanVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() * @model * @generated */ boolean isBooleanVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar1 Boolean Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}' attribute. * * * @param value the new value of the 'Boolean Var1' attribute. @@ -1012,14 +1012,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var2' attribute. * @see #setBooleanVar2(boolean) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_BooleanVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() * @model * @generated */ boolean isBooleanVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar2 Boolean Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. * * * @param value the new value of the 'Boolean Var2' attribute. @@ -1038,14 +1038,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var3' attribute. * @see #setBooleanVar3(boolean) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_BooleanVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() * @model * @generated */ boolean isBooleanVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar3 Boolean Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. * * * @param value the new value of the 'Boolean Var3' attribute. @@ -1064,14 +1064,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var4' attribute. * @see #setBooleanVar4(boolean) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_BooleanVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() * @model * @generated */ boolean isBooleanVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar4 Boolean Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. * * * @param value the new value of the 'Boolean Var4' attribute. @@ -1090,14 +1090,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var5' attribute. * @see #setBooleanVar5(boolean) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_BooleanVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() * @model * @generated */ boolean isBooleanVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#isBooleanVar5 Boolean Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. * * * @param value the new value of the 'Boolean Var5' attribute. @@ -1116,14 +1116,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var1' attribute. * @see #setStringVar1(String) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_StringVar1() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() * @model * @generated */ String getStringVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar1 String Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar1 String Var1}' attribute. * * * @param value the new value of the 'String Var1' attribute. @@ -1142,14 +1142,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var2' attribute. * @see #setStringVar2(String) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_StringVar2() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() * @model * @generated */ String getStringVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar2 String Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar2 String Var2}' attribute. * * * @param value the new value of the 'String Var2' attribute. @@ -1168,14 +1168,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var3' attribute. * @see #setStringVar3(String) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_StringVar3() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() * @model * @generated */ String getStringVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar3 String Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar3 String Var3}' attribute. * * * @param value the new value of the 'String Var3' attribute. @@ -1194,14 +1194,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var4' attribute. * @see #setStringVar4(String) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_StringVar4() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() * @model * @generated */ String getStringVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar4 String Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar4 String Var4}' attribute. * * * @param value the new value of the 'String Var4' attribute. @@ -1220,14 +1220,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var5' attribute. * @see #setStringVar5(String) - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getFile_StringVar5() + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() * @model * @generated */ String getStringVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File#getStringVar5 String Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch#getStringVar5 String Var5}' attribute. * * * @param value the new value of the 'String Var5' attribute. @@ -1236,4 +1236,4 @@ public interface File extends IModifiable, IContainer { */ void setStringVar5(String value); -} // File +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactFactoryImpl.java index def2b6bbb..1aacf4634 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactFactoryImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -57,7 +57,7 @@ public ArtefactFactoryImpl() { public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ArtefactPackage.DIAGRAM: return createDiagram(); - case ArtefactPackage.FILE: return createFile(); + case ArtefactPackage.SKETCH: return createSketch(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } @@ -78,9 +78,9 @@ public Diagram createDiagram() { * * @generated */ - public File createFile() { - FileImpl file = new FileImpl(); - return file; + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactPackageImpl.java index a294411e9..b052f5265 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactPackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -5,8 +5,8 @@ import com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactFactory; import com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage; import com.specmate.migration.test.attributerenamed.testmodel.artefact.Diagram; +import com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch; -import com.specmate.migration.test.attributerenamed.testmodel.artefact.File; import com.specmate.migration.test.attributerenamed.testmodel.base.BasePackage; import com.specmate.migration.test.attributerenamed.testmodel.base.impl.BasePackageImpl; @@ -36,7 +36,7 @@ public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage * * @generated */ - private EClass fileEClass = null; + private EClass sketchEClass = null; /** * Creates an instance of the model Package, registered with @@ -118,8 +118,8 @@ public EClass getDiagram() { * * @generated */ - public EClass getFile() { - return fileEClass; + public EClass getSketch() { + return sketchEClass; } /** @@ -127,8 +127,8 @@ public EClass getFile() { * * @generated */ - public EAttribute getFile_ByteVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(0); + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); } /** @@ -136,8 +136,8 @@ public EAttribute getFile_ByteVar1() { * * @generated */ - public EAttribute getFile_ByteVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(1); + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); } /** @@ -145,8 +145,8 @@ public EAttribute getFile_ByteVar2() { * * @generated */ - public EAttribute getFile_ByteVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(2); + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); } /** @@ -154,8 +154,8 @@ public EAttribute getFile_ByteVar3() { * * @generated */ - public EAttribute getFile_ByteVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(3); + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); } /** @@ -163,8 +163,8 @@ public EAttribute getFile_ByteVar4() { * * @generated */ - public EAttribute getFile_ByteVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(4); + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); } /** @@ -172,8 +172,8 @@ public EAttribute getFile_ByteVar5() { * * @generated */ - public EAttribute getFile_ShortVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(5); + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); } /** @@ -181,8 +181,8 @@ public EAttribute getFile_ShortVar1() { * * @generated */ - public EAttribute getFile_ShortVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(6); + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); } /** @@ -190,8 +190,8 @@ public EAttribute getFile_ShortVar2() { * * @generated */ - public EAttribute getFile_ShortVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(7); + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); } /** @@ -199,8 +199,8 @@ public EAttribute getFile_ShortVar3() { * * @generated */ - public EAttribute getFile_ShortVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(8); + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); } /** @@ -208,8 +208,8 @@ public EAttribute getFile_ShortVar4() { * * @generated */ - public EAttribute getFile_ShortVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(9); + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); } /** @@ -217,8 +217,8 @@ public EAttribute getFile_ShortVar5() { * * @generated */ - public EAttribute getFile_IntVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(10); + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); } /** @@ -226,8 +226,8 @@ public EAttribute getFile_IntVar1() { * * @generated */ - public EAttribute getFile_IntVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(11); + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); } /** @@ -235,8 +235,8 @@ public EAttribute getFile_IntVar2() { * * @generated */ - public EAttribute getFile_IntVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(12); + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); } /** @@ -244,8 +244,8 @@ public EAttribute getFile_IntVar3() { * * @generated */ - public EAttribute getFile_IntVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(13); + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); } /** @@ -253,8 +253,8 @@ public EAttribute getFile_IntVar4() { * * @generated */ - public EAttribute getFile_IntVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(14); + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); } /** @@ -262,8 +262,8 @@ public EAttribute getFile_IntVar5() { * * @generated */ - public EAttribute getFile_CharVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(15); + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); } /** @@ -271,8 +271,8 @@ public EAttribute getFile_CharVar1() { * * @generated */ - public EAttribute getFile_CharVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(16); + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); } /** @@ -280,8 +280,8 @@ public EAttribute getFile_CharVar2() { * * @generated */ - public EAttribute getFile_CharVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(17); + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); } /** @@ -289,8 +289,8 @@ public EAttribute getFile_CharVar3() { * * @generated */ - public EAttribute getFile_CharVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(18); + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); } /** @@ -298,8 +298,8 @@ public EAttribute getFile_CharVar4() { * * @generated */ - public EAttribute getFile_CharVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(19); + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); } /** @@ -307,8 +307,8 @@ public EAttribute getFile_CharVar5() { * * @generated */ - public EAttribute getFile_LongVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(20); + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); } /** @@ -316,8 +316,8 @@ public EAttribute getFile_LongVar1() { * * @generated */ - public EAttribute getFile_LongVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(21); + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); } /** @@ -325,8 +325,8 @@ public EAttribute getFile_LongVar2() { * * @generated */ - public EAttribute getFile_LongVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(22); + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); } /** @@ -334,8 +334,8 @@ public EAttribute getFile_LongVar3() { * * @generated */ - public EAttribute getFile_LongVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(23); + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); } /** @@ -343,8 +343,8 @@ public EAttribute getFile_LongVar4() { * * @generated */ - public EAttribute getFile_LongVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(24); + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); } /** @@ -352,8 +352,8 @@ public EAttribute getFile_LongVar5() { * * @generated */ - public EAttribute getFile_FloatVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(25); + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); } /** @@ -361,8 +361,8 @@ public EAttribute getFile_FloatVar1() { * * @generated */ - public EAttribute getFile_FloatVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(26); + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); } /** @@ -370,8 +370,8 @@ public EAttribute getFile_FloatVar2() { * * @generated */ - public EAttribute getFile_FloatVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(27); + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); } /** @@ -379,8 +379,8 @@ public EAttribute getFile_FloatVar3() { * * @generated */ - public EAttribute getFile_FloatVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(28); + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); } /** @@ -388,8 +388,8 @@ public EAttribute getFile_FloatVar4() { * * @generated */ - public EAttribute getFile_FloatVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(29); + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); } /** @@ -397,8 +397,8 @@ public EAttribute getFile_FloatVar5() { * * @generated */ - public EAttribute getFile_DoubleVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(30); + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); } /** @@ -406,8 +406,8 @@ public EAttribute getFile_DoubleVar1() { * * @generated */ - public EAttribute getFile_DoubleVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(31); + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); } /** @@ -415,8 +415,8 @@ public EAttribute getFile_DoubleVar2() { * * @generated */ - public EAttribute getFile_DoubleVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(32); + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); } /** @@ -424,8 +424,8 @@ public EAttribute getFile_DoubleVar3() { * * @generated */ - public EAttribute getFile_DoubleVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(33); + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); } /** @@ -433,8 +433,8 @@ public EAttribute getFile_DoubleVar4() { * * @generated */ - public EAttribute getFile_DoubleVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(34); + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); } /** @@ -442,8 +442,8 @@ public EAttribute getFile_DoubleVar5() { * * @generated */ - public EAttribute getFile_BooleanVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(35); + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); } /** @@ -451,8 +451,8 @@ public EAttribute getFile_BooleanVar1() { * * @generated */ - public EAttribute getFile_BooleanVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(36); + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); } /** @@ -460,8 +460,8 @@ public EAttribute getFile_BooleanVar2() { * * @generated */ - public EAttribute getFile_BooleanVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(37); + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); } /** @@ -469,8 +469,8 @@ public EAttribute getFile_BooleanVar3() { * * @generated */ - public EAttribute getFile_BooleanVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(38); + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); } /** @@ -478,8 +478,8 @@ public EAttribute getFile_BooleanVar4() { * * @generated */ - public EAttribute getFile_BooleanVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(39); + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); } /** @@ -487,8 +487,8 @@ public EAttribute getFile_BooleanVar5() { * * @generated */ - public EAttribute getFile_StringVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(40); + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); } /** @@ -496,8 +496,8 @@ public EAttribute getFile_StringVar1() { * * @generated */ - public EAttribute getFile_StringVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(41); + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); } /** @@ -505,8 +505,8 @@ public EAttribute getFile_StringVar2() { * * @generated */ - public EAttribute getFile_StringVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(42); + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); } /** @@ -514,8 +514,8 @@ public EAttribute getFile_StringVar3() { * * @generated */ - public EAttribute getFile_StringVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(43); + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); } /** @@ -523,8 +523,8 @@ public EAttribute getFile_StringVar4() { * * @generated */ - public EAttribute getFile_StringVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(44); + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); } /** @@ -557,52 +557,52 @@ public void createPackageContents() { // Create classes and their features diagramEClass = createEClass(DIAGRAM); - fileEClass = createEClass(FILE); - createEAttribute(fileEClass, FILE__BYTE_VAR1); - createEAttribute(fileEClass, FILE__BYTE_VAR2); - createEAttribute(fileEClass, FILE__BYTE_VAR3); - createEAttribute(fileEClass, FILE__BYTE_VAR4); - createEAttribute(fileEClass, FILE__BYTE_VAR5); - createEAttribute(fileEClass, FILE__SHORT_VAR1); - createEAttribute(fileEClass, FILE__SHORT_VAR2); - createEAttribute(fileEClass, FILE__SHORT_VAR3); - createEAttribute(fileEClass, FILE__SHORT_VAR4); - createEAttribute(fileEClass, FILE__SHORT_VAR5); - createEAttribute(fileEClass, FILE__INT_VAR1); - createEAttribute(fileEClass, FILE__INT_VAR2); - createEAttribute(fileEClass, FILE__INT_VAR3); - createEAttribute(fileEClass, FILE__INT_VAR4); - createEAttribute(fileEClass, FILE__INT_VAR5); - createEAttribute(fileEClass, FILE__CHAR_VAR1); - createEAttribute(fileEClass, FILE__CHAR_VAR2); - createEAttribute(fileEClass, FILE__CHAR_VAR3); - createEAttribute(fileEClass, FILE__CHAR_VAR4); - createEAttribute(fileEClass, FILE__CHAR_VAR5); - createEAttribute(fileEClass, FILE__LONG_VAR1); - createEAttribute(fileEClass, FILE__LONG_VAR2); - createEAttribute(fileEClass, FILE__LONG_VAR3); - createEAttribute(fileEClass, FILE__LONG_VAR4); - createEAttribute(fileEClass, FILE__LONG_VAR5); - createEAttribute(fileEClass, FILE__FLOAT_VAR1); - createEAttribute(fileEClass, FILE__FLOAT_VAR2); - createEAttribute(fileEClass, FILE__FLOAT_VAR3); - createEAttribute(fileEClass, FILE__FLOAT_VAR4); - createEAttribute(fileEClass, FILE__FLOAT_VAR5); - createEAttribute(fileEClass, FILE__DOUBLE_VAR1); - createEAttribute(fileEClass, FILE__DOUBLE_VAR2); - createEAttribute(fileEClass, FILE__DOUBLE_VAR3); - createEAttribute(fileEClass, FILE__DOUBLE_VAR4); - createEAttribute(fileEClass, FILE__DOUBLE_VAR5); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR1); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR2); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR3); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR4); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR5); - createEAttribute(fileEClass, FILE__STRING_VAR1); - createEAttribute(fileEClass, FILE__STRING_VAR2); - createEAttribute(fileEClass, FILE__STRING_VAR3); - createEAttribute(fileEClass, FILE__STRING_VAR4); - createEAttribute(fileEClass, FILE__STRING_VAR5); + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); } /** @@ -638,58 +638,58 @@ public void initializePackageContents() { // Add supertypes to classes diagramEClass.getESuperTypes().add(theBasePackage.getIModifiable()); diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); - fileEClass.getESuperTypes().add(theBasePackage.getIModifiable()); - fileEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); // Initialize classes, features, and operations; add parameters initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEClass(fileEClass, File.class, "File", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEAttribute(getFile_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); // Create resource createResource(eNS_URI); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/FileImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/SketchImpl.java similarity index 63% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/FileImpl.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/SketchImpl.java index 8e02900cb..24529fc70 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/FileImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/impl/SketchImpl.java @@ -3,7 +3,7 @@ package com.specmate.migration.test.attributerenamed.testmodel.artefact.impl; import com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage; -import com.specmate.migration.test.attributerenamed.testmodel.artefact.File; +import com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch; import com.specmate.migration.test.attributerenamed.testmodel.base.BasePackage; import com.specmate.migration.test.attributerenamed.testmodel.base.IContainer; @@ -25,65 +25,65 @@ /** * - * An implementation of the model object 'File'. + * An implementation of the model object 'Sketch'. * *

* The following features are implemented: *

*
    - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#isIstested Istested}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getId Id}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getContents Contents}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.FileImpl#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#isIstested Istested}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.attributerenamed.testmodel.artefact.impl.SketchImpl#getStringVar5 String Var5}
  • *
* * @generated */ -public class FileImpl extends MinimalEObjectImpl.Container implements File { +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { /** * The default value of the '{@link #isIstested() Istested}' attribute. * @@ -559,7 +559,7 @@ public class FileImpl extends MinimalEObjectImpl.Container implements File { * * @generated */ - protected FileImpl() { + protected SketchImpl() { super(); } @@ -570,7 +570,7 @@ protected FileImpl() { */ @Override protected EClass eStaticClass() { - return ArtefactPackage.Literals.FILE; + return ArtefactPackage.Literals.SKETCH; } /** @@ -589,7 +589,7 @@ protected int eStaticFeatureCount() { * @generated */ public boolean isIstested() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__ISTESTED, BasePackage.Literals.ITESTABLE__ISTESTED, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__ISTESTED, BasePackage.Literals.ITESTABLE__ISTESTED, true, true); } /** @@ -598,7 +598,7 @@ public boolean isIstested() { * @generated */ public void setIstested(boolean newIstested) { - eDynamicSet(ArtefactPackage.FILE__ISTESTED, BasePackage.Literals.ITESTABLE__ISTESTED, newIstested); + eDynamicSet(ArtefactPackage.SKETCH__ISTESTED, BasePackage.Literals.ITESTABLE__ISTESTED, newIstested); } /** @@ -607,7 +607,7 @@ public void setIstested(boolean newIstested) { * @generated */ public String getId() { - return (String)eDynamicGet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); } /** @@ -616,7 +616,7 @@ public String getId() { * @generated */ public void setId(String newId) { - eDynamicSet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, newId); + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); } /** @@ -626,7 +626,7 @@ public void setId(String newId) { */ @SuppressWarnings("unchecked") public EList getContents() { - return (EList)eDynamicGet(ArtefactPackage.FILE__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); } /** @@ -635,7 +635,7 @@ public EList getContents() { * @generated */ public byte getByteVar1() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); } /** @@ -644,7 +644,7 @@ public byte getByteVar1() { * @generated */ public void setByteVar1(byte newByteVar1) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, newByteVar1); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); } /** @@ -653,7 +653,7 @@ public void setByteVar1(byte newByteVar1) { * @generated */ public byte getByteVar2() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); } /** @@ -662,7 +662,7 @@ public byte getByteVar2() { * @generated */ public void setByteVar2(byte newByteVar2) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, newByteVar2); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); } /** @@ -671,7 +671,7 @@ public void setByteVar2(byte newByteVar2) { * @generated */ public byte getByteVar3() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); } /** @@ -680,7 +680,7 @@ public byte getByteVar3() { * @generated */ public void setByteVar3(byte newByteVar3) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, newByteVar3); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); } /** @@ -689,7 +689,7 @@ public void setByteVar3(byte newByteVar3) { * @generated */ public byte getByteVar4() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); } /** @@ -698,7 +698,7 @@ public byte getByteVar4() { * @generated */ public void setByteVar4(byte newByteVar4) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, newByteVar4); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); } /** @@ -707,7 +707,7 @@ public void setByteVar4(byte newByteVar4) { * @generated */ public byte getByteVar5() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); } /** @@ -716,7 +716,7 @@ public byte getByteVar5() { * @generated */ public void setByteVar5(byte newByteVar5) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, newByteVar5); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); } /** @@ -725,7 +725,7 @@ public void setByteVar5(byte newByteVar5) { * @generated */ public short getShortVar1() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); } /** @@ -734,7 +734,7 @@ public short getShortVar1() { * @generated */ public void setShortVar1(short newShortVar1) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, newShortVar1); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); } /** @@ -743,7 +743,7 @@ public void setShortVar1(short newShortVar1) { * @generated */ public short getShortVar2() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); } /** @@ -752,7 +752,7 @@ public short getShortVar2() { * @generated */ public void setShortVar2(short newShortVar2) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, newShortVar2); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); } /** @@ -761,7 +761,7 @@ public void setShortVar2(short newShortVar2) { * @generated */ public short getShortVar3() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); } /** @@ -770,7 +770,7 @@ public short getShortVar3() { * @generated */ public void setShortVar3(short newShortVar3) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, newShortVar3); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); } /** @@ -779,7 +779,7 @@ public void setShortVar3(short newShortVar3) { * @generated */ public short getShortVar4() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); } /** @@ -788,7 +788,7 @@ public short getShortVar4() { * @generated */ public void setShortVar4(short newShortVar4) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, newShortVar4); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); } /** @@ -797,7 +797,7 @@ public void setShortVar4(short newShortVar4) { * @generated */ public short getShortVar5() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); } /** @@ -806,7 +806,7 @@ public short getShortVar5() { * @generated */ public void setShortVar5(short newShortVar5) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, newShortVar5); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); } /** @@ -815,7 +815,7 @@ public void setShortVar5(short newShortVar5) { * @generated */ public int getIntVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); } /** @@ -824,7 +824,7 @@ public int getIntVar1() { * @generated */ public void setIntVar1(int newIntVar1) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, newIntVar1); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); } /** @@ -833,7 +833,7 @@ public void setIntVar1(int newIntVar1) { * @generated */ public int getIntVar2() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); } /** @@ -842,7 +842,7 @@ public int getIntVar2() { * @generated */ public void setIntVar2(int newIntVar2) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, newIntVar2); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); } /** @@ -851,7 +851,7 @@ public void setIntVar2(int newIntVar2) { * @generated */ public int getIntVar3() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); } /** @@ -860,7 +860,7 @@ public int getIntVar3() { * @generated */ public void setIntVar3(int newIntVar3) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, newIntVar3); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); } /** @@ -869,7 +869,7 @@ public void setIntVar3(int newIntVar3) { * @generated */ public int getIntVar4() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); } /** @@ -878,7 +878,7 @@ public int getIntVar4() { * @generated */ public void setIntVar4(int newIntVar4) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, newIntVar4); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); } /** @@ -887,7 +887,7 @@ public void setIntVar4(int newIntVar4) { * @generated */ public int getIntVar5() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); } /** @@ -896,7 +896,7 @@ public int getIntVar5() { * @generated */ public void setIntVar5(int newIntVar5) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, newIntVar5); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); } /** @@ -905,7 +905,7 @@ public void setIntVar5(int newIntVar5) { * @generated */ public char getCharVar1() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); } /** @@ -914,7 +914,7 @@ public char getCharVar1() { * @generated */ public void setCharVar1(char newCharVar1) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, newCharVar1); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); } /** @@ -923,7 +923,7 @@ public void setCharVar1(char newCharVar1) { * @generated */ public char getCharVar2() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); } /** @@ -932,7 +932,7 @@ public char getCharVar2() { * @generated */ public void setCharVar2(char newCharVar2) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, newCharVar2); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); } /** @@ -941,7 +941,7 @@ public void setCharVar2(char newCharVar2) { * @generated */ public char getCharVar3() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); } /** @@ -950,7 +950,7 @@ public char getCharVar3() { * @generated */ public void setCharVar3(char newCharVar3) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, newCharVar3); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); } /** @@ -959,7 +959,7 @@ public void setCharVar3(char newCharVar3) { * @generated */ public char getCharVar4() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); } /** @@ -968,7 +968,7 @@ public char getCharVar4() { * @generated */ public void setCharVar4(char newCharVar4) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, newCharVar4); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); } /** @@ -977,7 +977,7 @@ public void setCharVar4(char newCharVar4) { * @generated */ public char getCharVar5() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); } /** @@ -986,7 +986,7 @@ public char getCharVar5() { * @generated */ public void setCharVar5(char newCharVar5) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, newCharVar5); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); } /** @@ -995,7 +995,7 @@ public void setCharVar5(char newCharVar5) { * @generated */ public long getLongVar1() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); } /** @@ -1004,7 +1004,7 @@ public long getLongVar1() { * @generated */ public void setLongVar1(long newLongVar1) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, newLongVar1); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); } /** @@ -1013,7 +1013,7 @@ public void setLongVar1(long newLongVar1) { * @generated */ public long getLongVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); } /** @@ -1022,7 +1022,7 @@ public long getLongVar2() { * @generated */ public void setLongVar2(long newLongVar2) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, newLongVar2); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); } /** @@ -1031,7 +1031,7 @@ public void setLongVar2(long newLongVar2) { * @generated */ public long getLongVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); } /** @@ -1040,7 +1040,7 @@ public long getLongVar3() { * @generated */ public void setLongVar3(long newLongVar3) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, newLongVar3); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); } /** @@ -1049,7 +1049,7 @@ public void setLongVar3(long newLongVar3) { * @generated */ public long getLongVar4() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); } /** @@ -1058,7 +1058,7 @@ public long getLongVar4() { * @generated */ public void setLongVar4(long newLongVar4) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, newLongVar4); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); } /** @@ -1067,7 +1067,7 @@ public void setLongVar4(long newLongVar4) { * @generated */ public long getLongVar5() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); } /** @@ -1076,7 +1076,7 @@ public long getLongVar5() { * @generated */ public void setLongVar5(long newLongVar5) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, newLongVar5); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); } /** @@ -1085,7 +1085,7 @@ public void setLongVar5(long newLongVar5) { * @generated */ public float getFloatVar1() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); } /** @@ -1094,7 +1094,7 @@ public float getFloatVar1() { * @generated */ public void setFloatVar1(float newFloatVar1) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, newFloatVar1); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); } /** @@ -1103,7 +1103,7 @@ public void setFloatVar1(float newFloatVar1) { * @generated */ public float getFloatVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); } /** @@ -1112,7 +1112,7 @@ public float getFloatVar2() { * @generated */ public void setFloatVar2(float newFloatVar2) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, newFloatVar2); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); } /** @@ -1121,7 +1121,7 @@ public void setFloatVar2(float newFloatVar2) { * @generated */ public float getFloatVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); } /** @@ -1130,7 +1130,7 @@ public float getFloatVar3() { * @generated */ public void setFloatVar3(float newFloatVar3) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, newFloatVar3); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); } /** @@ -1139,7 +1139,7 @@ public void setFloatVar3(float newFloatVar3) { * @generated */ public float getFloatVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); } /** @@ -1148,7 +1148,7 @@ public float getFloatVar4() { * @generated */ public void setFloatVar4(float newFloatVar4) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, newFloatVar4); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); } /** @@ -1157,7 +1157,7 @@ public void setFloatVar4(float newFloatVar4) { * @generated */ public float getFloatVar5() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); } /** @@ -1166,7 +1166,7 @@ public float getFloatVar5() { * @generated */ public void setFloatVar5(float newFloatVar5) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, newFloatVar5); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); } /** @@ -1175,7 +1175,7 @@ public void setFloatVar5(float newFloatVar5) { * @generated */ public double getDoubleVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); } /** @@ -1184,7 +1184,7 @@ public double getDoubleVar1() { * @generated */ public void setDoubleVar1(double newDoubleVar1) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, newDoubleVar1); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); } /** @@ -1193,7 +1193,7 @@ public void setDoubleVar1(double newDoubleVar1) { * @generated */ public double getDoubleVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); } /** @@ -1202,7 +1202,7 @@ public double getDoubleVar2() { * @generated */ public void setDoubleVar2(double newDoubleVar2) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, newDoubleVar2); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); } /** @@ -1211,7 +1211,7 @@ public void setDoubleVar2(double newDoubleVar2) { * @generated */ public double getDoubleVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); } /** @@ -1220,7 +1220,7 @@ public double getDoubleVar3() { * @generated */ public void setDoubleVar3(double newDoubleVar3) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, newDoubleVar3); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); } /** @@ -1229,7 +1229,7 @@ public void setDoubleVar3(double newDoubleVar3) { * @generated */ public double getDoubleVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); } /** @@ -1238,7 +1238,7 @@ public double getDoubleVar4() { * @generated */ public void setDoubleVar4(double newDoubleVar4) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, newDoubleVar4); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); } /** @@ -1247,7 +1247,7 @@ public void setDoubleVar4(double newDoubleVar4) { * @generated */ public double getDoubleVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); } /** @@ -1256,7 +1256,7 @@ public double getDoubleVar5() { * @generated */ public void setDoubleVar5(double newDoubleVar5) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, newDoubleVar5); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); } /** @@ -1265,7 +1265,7 @@ public void setDoubleVar5(double newDoubleVar5) { * @generated */ public boolean isBooleanVar1() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); } /** @@ -1274,7 +1274,7 @@ public boolean isBooleanVar1() { * @generated */ public void setBooleanVar1(boolean newBooleanVar1) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, newBooleanVar1); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); } /** @@ -1283,7 +1283,7 @@ public void setBooleanVar1(boolean newBooleanVar1) { * @generated */ public boolean isBooleanVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); } /** @@ -1292,7 +1292,7 @@ public boolean isBooleanVar2() { * @generated */ public void setBooleanVar2(boolean newBooleanVar2) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, newBooleanVar2); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); } /** @@ -1301,7 +1301,7 @@ public void setBooleanVar2(boolean newBooleanVar2) { * @generated */ public boolean isBooleanVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); } /** @@ -1310,7 +1310,7 @@ public boolean isBooleanVar3() { * @generated */ public void setBooleanVar3(boolean newBooleanVar3) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, newBooleanVar3); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); } /** @@ -1319,7 +1319,7 @@ public void setBooleanVar3(boolean newBooleanVar3) { * @generated */ public boolean isBooleanVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); } /** @@ -1328,7 +1328,7 @@ public boolean isBooleanVar4() { * @generated */ public void setBooleanVar4(boolean newBooleanVar4) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, newBooleanVar4); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); } /** @@ -1337,7 +1337,7 @@ public void setBooleanVar4(boolean newBooleanVar4) { * @generated */ public boolean isBooleanVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); } /** @@ -1346,7 +1346,7 @@ public boolean isBooleanVar5() { * @generated */ public void setBooleanVar5(boolean newBooleanVar5) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, newBooleanVar5); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); } /** @@ -1355,7 +1355,7 @@ public void setBooleanVar5(boolean newBooleanVar5) { * @generated */ public String getStringVar1() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); } /** @@ -1364,7 +1364,7 @@ public String getStringVar1() { * @generated */ public void setStringVar1(String newStringVar1) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, newStringVar1); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); } /** @@ -1373,7 +1373,7 @@ public void setStringVar1(String newStringVar1) { * @generated */ public String getStringVar2() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); } /** @@ -1382,7 +1382,7 @@ public String getStringVar2() { * @generated */ public void setStringVar2(String newStringVar2) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, newStringVar2); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); } /** @@ -1391,7 +1391,7 @@ public void setStringVar2(String newStringVar2) { * @generated */ public String getStringVar3() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); } /** @@ -1400,7 +1400,7 @@ public String getStringVar3() { * @generated */ public void setStringVar3(String newStringVar3) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, newStringVar3); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); } /** @@ -1409,7 +1409,7 @@ public void setStringVar3(String newStringVar3) { * @generated */ public String getStringVar4() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); } /** @@ -1418,7 +1418,7 @@ public String getStringVar4() { * @generated */ public void setStringVar4(String newStringVar4) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, newStringVar4); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); } /** @@ -1427,7 +1427,7 @@ public void setStringVar4(String newStringVar4) { * @generated */ public String getStringVar5() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); } /** @@ -1436,7 +1436,7 @@ public String getStringVar5() { * @generated */ public void setStringVar5(String newStringVar5) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, newStringVar5); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); } /** @@ -1447,7 +1447,7 @@ public void setStringVar5(String newStringVar5) { @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); @@ -1461,101 +1461,101 @@ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case ArtefactPackage.FILE__ISTESTED: + case ArtefactPackage.SKETCH__ISTESTED: return isIstested(); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return getId(); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return getContents(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1(); - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2(); - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3(); - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4(); - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5(); - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1(); - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2(); - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3(); - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4(); - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5(); - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1(); - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2(); - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3(); - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4(); - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5(); - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1(); - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2(); - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3(); - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4(); - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5(); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1(); - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2(); - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3(); - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4(); - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5(); - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1(); - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2(); - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3(); - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4(); - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5(); - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1(); - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2(); - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3(); - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4(); - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5(); - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1(); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2(); - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3(); - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4(); - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5(); - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return getStringVar1(); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return getStringVar2(); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return getStringVar3(); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return getStringVar4(); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return getStringVar5(); } return super.eGet(featureID, resolve, coreType); @@ -1570,149 +1570,149 @@ public Object eGet(int featureID, boolean resolve, boolean coreType) { @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case ArtefactPackage.FILE__ISTESTED: + case ArtefactPackage.SKETCH__ISTESTED: setIstested((Boolean)newValue); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId((String)newValue); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); getContents().addAll((Collection)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5((Byte)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5((Short)newValue); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5((Character)newValue); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5((Long)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5((Float)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5((Double)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5((String)newValue); return; } @@ -1727,148 +1727,148 @@ public void eSet(int featureID, Object newValue) { @Override public void eUnset(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__ISTESTED: + case ArtefactPackage.SKETCH__ISTESTED: setIstested(ISTESTED_EDEFAULT); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId(ID_EDEFAULT); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1(BYTE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2(BYTE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3(BYTE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4(BYTE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5(BYTE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1(SHORT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2(SHORT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3(SHORT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4(SHORT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5(SHORT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1(INT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2(INT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3(INT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4(INT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5(INT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1(CHAR_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2(CHAR_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3(CHAR_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4(CHAR_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5(CHAR_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1(LONG_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2(LONG_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3(LONG_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4(LONG_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5(LONG_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1(FLOAT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2(FLOAT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3(FLOAT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4(FLOAT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5(FLOAT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1(DOUBLE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2(DOUBLE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3(DOUBLE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4(DOUBLE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5(DOUBLE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1(STRING_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2(STRING_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3(STRING_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4(STRING_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5(STRING_VAR5_EDEFAULT); return; } @@ -1883,101 +1883,101 @@ public void eUnset(int featureID) { @Override public boolean eIsSet(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__ISTESTED: + case ArtefactPackage.SKETCH__ISTESTED: return isIstested() != ISTESTED_EDEFAULT; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return !getContents().isEmpty(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1() != BYTE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2() != BYTE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3() != BYTE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4() != BYTE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5() != BYTE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1() != SHORT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2() != SHORT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3() != SHORT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4() != SHORT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5() != SHORT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1() != INT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2() != INT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3() != INT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4() != INT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5() != INT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1() != CHAR_VAR1_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2() != CHAR_VAR2_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3() != CHAR_VAR3_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4() != CHAR_VAR4_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5() != CHAR_VAR5_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1() != LONG_VAR1_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2() != LONG_VAR2_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3() != LONG_VAR3_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4() != LONG_VAR4_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5() != LONG_VAR5_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1() != FLOAT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2() != FLOAT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3() != FLOAT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4() != FLOAT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5() != FLOAT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1() != BOOLEAN_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return STRING_VAR1_EDEFAULT == null ? getStringVar1() != null : !STRING_VAR1_EDEFAULT.equals(getStringVar1()); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return STRING_VAR2_EDEFAULT == null ? getStringVar2() != null : !STRING_VAR2_EDEFAULT.equals(getStringVar2()); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return STRING_VAR3_EDEFAULT == null ? getStringVar3() != null : !STRING_VAR3_EDEFAULT.equals(getStringVar3()); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return STRING_VAR4_EDEFAULT == null ? getStringVar4() != null : !STRING_VAR4_EDEFAULT.equals(getStringVar4()); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return STRING_VAR5_EDEFAULT == null ? getStringVar5() != null : !STRING_VAR5_EDEFAULT.equals(getStringVar5()); } return super.eIsSet(featureID); @@ -1992,7 +1992,7 @@ public boolean eIsSet(int featureID) { public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__ID: return BasePackage.IID__ID; + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; default: return -1; } } @@ -2003,7 +2003,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; default: return -1; } } @@ -2019,7 +2019,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (baseFeatureID) { - case BasePackage.IID__ID: return ArtefactPackage.FILE__ID; + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; default: return -1; } } @@ -2030,11 +2030,11 @@ public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (baseFeatureID) { - case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.FILE__CONTENTS; + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } -} //FileImpl +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactAdapterFactory.java index 103a2efdf..173181ee9 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -78,8 +78,8 @@ public Adapter caseDiagram(Diagram object) { return createDiagramAdapter(); } @Override - public Adapter caseFile(File object) { - return createFileAdapter(); + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); } @Override public Adapter caseITestable(ITestable object) { @@ -136,16 +136,16 @@ public Adapter createDiagramAdapter() { } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.File File}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch Sketch}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.File + * @see com.specmate.migration.test.attributerenamed.testmodel.artefact.Sketch * @generated */ - public Adapter createFileAdapter() { + public Adapter createSketchAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactSwitch.java index 11deb8934..729963c7b 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/attributerenamed/testmodel/artefact/util/ArtefactSwitch.java @@ -83,14 +83,14 @@ protected T doSwitch(int classifierID, EObject theEObject) { if (result == null) result = defaultCase(theEObject); return result; } - case ArtefactPackage.FILE: { - File file = (File)theEObject; - T result = caseFile(file); - if (result == null) result = caseIModifiable(file); - if (result == null) result = caseIContainer(file); - if (result == null) result = caseITestable(file); - if (result == null) result = caseIContentElement(file); - if (result == null) result = caseIID(file); + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseIID(sketch); if (result == null) result = defaultCase(theEObject); return result; } @@ -114,17 +114,17 @@ public T caseDiagram(Diagram object) { } /** - * Returns the result of interpreting the object as an instance of 'File'. + * Returns the result of interpreting the object as an instance of 'Sketch'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'File'. + * @return the result of interpreting the object as an instance of 'Sketch'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseFile(File object) { + public T caseSketch(Sketch object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactFactory.java index 9d5074058..88426b8ee 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactFactory.java @@ -31,13 +31,13 @@ public interface ArtefactFactory extends EFactory { Diagram createDiagram(); /** - * Returns a new object of class 'File'. + * Returns a new object of class 'Sketch'. * * - * @return a new object of class 'File'. + * @return a new object of class 'Sketch'. * @generated */ - File createFile(); + Sketch createSketch(); /** * Returns the package supported by this factory. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactPackage.java index 2611f9872..16adc0ca6 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactPackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/ArtefactPackage.java @@ -112,16 +112,15 @@ public interface ArtefactPackage extends EPackage { */ int DIAGRAM_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; - /** - * The meta object id for the '{@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl File}' class. + * The meta object id for the '{@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - int FILE = 1; + int SKETCH = 1; /** * The feature id for the 'Tested' attribute. @@ -130,7 +129,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__TESTED = BasePackage.IMODIFIABLE__TESTED; + int SKETCH__TESTED = BasePackage.IMODIFIABLE__TESTED; /** * The feature id for the 'Id' attribute. @@ -139,7 +138,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; /** * The feature id for the 'Contents' containment reference list. @@ -148,7 +147,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; /** * The feature id for the 'Byte Var1' attribute. @@ -157,7 +156,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; /** * The feature id for the 'Byte Var2' attribute. @@ -166,7 +165,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; /** * The feature id for the 'Byte Var3' attribute. @@ -175,7 +174,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; /** * The feature id for the 'Byte Var4' attribute. @@ -184,7 +183,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; /** * The feature id for the 'Byte Var5' attribute. @@ -193,7 +192,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; /** * The feature id for the 'Short Var1' attribute. @@ -202,7 +201,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; /** * The feature id for the 'Short Var2' attribute. @@ -211,7 +210,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; /** * The feature id for the 'Short Var3' attribute. @@ -220,7 +219,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; /** * The feature id for the 'Short Var4' attribute. @@ -229,7 +228,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; /** * The feature id for the 'Short Var5' attribute. @@ -238,7 +237,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; /** * The feature id for the 'Int Var1' attribute. @@ -247,7 +246,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; /** * The feature id for the 'Int Var2' attribute. @@ -256,7 +255,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; /** * The feature id for the 'Int Var3' attribute. @@ -265,7 +264,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; /** * The feature id for the 'Int Var4' attribute. @@ -274,7 +273,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; /** * The feature id for the 'Int Var5' attribute. @@ -283,7 +282,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; /** * The feature id for the 'Char Var1' attribute. @@ -292,7 +291,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; /** * The feature id for the 'Char Var2' attribute. @@ -301,7 +300,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; /** * The feature id for the 'Char Var3' attribute. @@ -310,7 +309,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; /** * The feature id for the 'Char Var4' attribute. @@ -319,7 +318,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; /** * The feature id for the 'Char Var5' attribute. @@ -328,7 +327,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; /** * The feature id for the 'Long Var1' attribute. @@ -337,7 +336,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; /** * The feature id for the 'Long Var2' attribute. @@ -346,7 +345,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; /** * The feature id for the 'Long Var3' attribute. @@ -355,7 +354,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; /** * The feature id for the 'Long Var4' attribute. @@ -364,7 +363,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; /** * The feature id for the 'Long Var5' attribute. @@ -373,7 +372,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; /** * The feature id for the 'Float Var1' attribute. @@ -382,7 +381,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; /** * The feature id for the 'Float Var2' attribute. @@ -391,7 +390,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; /** * The feature id for the 'Float Var3' attribute. @@ -400,7 +399,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; /** * The feature id for the 'Float Var4' attribute. @@ -409,7 +408,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; /** * The feature id for the 'Float Var5' attribute. @@ -418,7 +417,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; /** * The feature id for the 'Double Var1' attribute. @@ -427,7 +426,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; /** * The feature id for the 'Double Var2' attribute. @@ -436,7 +435,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; /** * The feature id for the 'Double Var3' attribute. @@ -445,7 +444,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; /** * The feature id for the 'Double Var4' attribute. @@ -454,7 +453,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; /** * The feature id for the 'Double Var5' attribute. @@ -463,7 +462,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; /** * The feature id for the 'Boolean Var1' attribute. @@ -472,7 +471,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; /** * The feature id for the 'Boolean Var2' attribute. @@ -481,7 +480,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; /** * The feature id for the 'Boolean Var3' attribute. @@ -490,7 +489,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; /** * The feature id for the 'Boolean Var4' attribute. @@ -499,7 +498,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; /** * The feature id for the 'Boolean Var5' attribute. @@ -508,7 +507,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; /** * The feature id for the 'String Var1' attribute. @@ -517,7 +516,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; /** * The feature id for the 'String Var2' attribute. @@ -526,7 +525,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; /** * The feature id for the 'String Var3' attribute. @@ -535,7 +534,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; /** * The feature id for the 'String Var4' attribute. @@ -544,7 +543,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; /** * The feature id for the 'String Var5' attribute. @@ -553,25 +552,25 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; /** - * The number of structural features of the 'File' class. + * The number of structural features of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; /** - * The number of operations of the 'File' class. + * The number of operations of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** @@ -585,509 +584,509 @@ public interface ArtefactPackage extends EPackage { EClass getDiagram(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.baseline.testmodel.artefact.File File}'. + * Returns the meta object for class '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch Sketch}'. * * - * @return the meta object for class 'File'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch * @generated */ - EClass getFile(); + EClass getSketch(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar1 Byte Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. * * * @return the meta object for the attribute 'Byte Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar1(); + EAttribute getSketch_ByteVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar2 Byte Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. * * * @return the meta object for the attribute 'Byte Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar2(); + EAttribute getSketch_ByteVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar3 Byte Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. * * * @return the meta object for the attribute 'Byte Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar3(); + EAttribute getSketch_ByteVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar4 Byte Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. * * * @return the meta object for the attribute 'Byte Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar4(); + EAttribute getSketch_ByteVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar5 Byte Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. * * * @return the meta object for the attribute 'Byte Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar5(); + EAttribute getSketch_ByteVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar1 Short Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. * * * @return the meta object for the attribute 'Short Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar1(); + EAttribute getSketch_ShortVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar2 Short Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. * * * @return the meta object for the attribute 'Short Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar2(); + EAttribute getSketch_ShortVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar3 Short Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. * * * @return the meta object for the attribute 'Short Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar3(); + EAttribute getSketch_ShortVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar4 Short Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. * * * @return the meta object for the attribute 'Short Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar4(); + EAttribute getSketch_ShortVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar5 Short Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. * * * @return the meta object for the attribute 'Short Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar5(); + EAttribute getSketch_ShortVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar1 Int Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. * * * @return the meta object for the attribute 'Int Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar1(); + EAttribute getSketch_IntVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar2 Int Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. * * * @return the meta object for the attribute 'Int Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar2(); + EAttribute getSketch_IntVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar3 Int Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. * * * @return the meta object for the attribute 'Int Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar3(); + EAttribute getSketch_IntVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar4 Int Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. * * * @return the meta object for the attribute 'Int Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar4(); + EAttribute getSketch_IntVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar5 Int Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. * * * @return the meta object for the attribute 'Int Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar5(); + EAttribute getSketch_IntVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar1 Char Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. * * * @return the meta object for the attribute 'Char Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar1(); + EAttribute getSketch_CharVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar2 Char Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. * * * @return the meta object for the attribute 'Char Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar2(); + EAttribute getSketch_CharVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar3 Char Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. * * * @return the meta object for the attribute 'Char Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar3(); + EAttribute getSketch_CharVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar4 Char Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. * * * @return the meta object for the attribute 'Char Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar4(); + EAttribute getSketch_CharVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar5 Char Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. * * * @return the meta object for the attribute 'Char Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar5(); + EAttribute getSketch_CharVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar1 Long Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. * * * @return the meta object for the attribute 'Long Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar1(); + EAttribute getSketch_LongVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar2 Long Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. * * * @return the meta object for the attribute 'Long Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar2(); + EAttribute getSketch_LongVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar3 Long Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. * * * @return the meta object for the attribute 'Long Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar3(); + EAttribute getSketch_LongVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar4 Long Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. * * * @return the meta object for the attribute 'Long Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar4(); + EAttribute getSketch_LongVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar5 Long Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. * * * @return the meta object for the attribute 'Long Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar5(); + EAttribute getSketch_LongVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar1 Float Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. * * * @return the meta object for the attribute 'Float Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar1(); + EAttribute getSketch_FloatVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar2 Float Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. * * * @return the meta object for the attribute 'Float Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar2(); + EAttribute getSketch_FloatVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar3 Float Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. * * * @return the meta object for the attribute 'Float Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar3(); + EAttribute getSketch_FloatVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar4 Float Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. * * * @return the meta object for the attribute 'Float Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar4(); + EAttribute getSketch_FloatVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar5 Float Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. * * * @return the meta object for the attribute 'Float Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar5(); + EAttribute getSketch_FloatVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar1 Double Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. * * * @return the meta object for the attribute 'Double Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar1(); + EAttribute getSketch_DoubleVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar2 Double Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. * * * @return the meta object for the attribute 'Double Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar2(); + EAttribute getSketch_DoubleVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar3 Double Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. * * * @return the meta object for the attribute 'Double Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar3(); + EAttribute getSketch_DoubleVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar4 Double Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. * * * @return the meta object for the attribute 'Double Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar4(); + EAttribute getSketch_DoubleVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar5 Double Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. * * * @return the meta object for the attribute 'Double Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar5(); + EAttribute getSketch_DoubleVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar1 Boolean Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}'. * * * @return the meta object for the attribute 'Boolean Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar1(); + EAttribute getSketch_BooleanVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar2 Boolean Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. * * * @return the meta object for the attribute 'Boolean Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar2(); + EAttribute getSketch_BooleanVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar3 Boolean Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. * * * @return the meta object for the attribute 'Boolean Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar3(); + EAttribute getSketch_BooleanVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar4 Boolean Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. * * * @return the meta object for the attribute 'Boolean Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar4(); + EAttribute getSketch_BooleanVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar5 Boolean Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. * * * @return the meta object for the attribute 'Boolean Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar5(); + EAttribute getSketch_BooleanVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar1 String Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar1 String Var1}'. * * * @return the meta object for the attribute 'String Var1'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar1() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar1(); + EAttribute getSketch_StringVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar2 String Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar2 String Var2}'. * * * @return the meta object for the attribute 'String Var2'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar2() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar2(); + EAttribute getSketch_StringVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar3 String Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar3 String Var3}'. * * * @return the meta object for the attribute 'String Var3'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar3() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar3(); + EAttribute getSketch_StringVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar4 String Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar4 String Var4}'. * * * @return the meta object for the attribute 'String Var4'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar4() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar4(); + EAttribute getSketch_StringVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar5 String Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar5 String Var5}'. * * * @return the meta object for the attribute 'String Var5'. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar5() - * @see #getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar5(); + EAttribute getSketch_StringVar5(); /** * Returns the factory that creates the instances of the model. @@ -1121,330 +1120,376 @@ interface Literals { * @generated */ EClass DIAGRAM = eINSTANCE.getDiagram(); + /** - * The meta object literal for the '{@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl File}' class. + * The meta object literal for the '{@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.baseline.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - EClass FILE = eINSTANCE.getFile(); + EClass SKETCH = eINSTANCE.getSketch(); + /** * The meta object literal for the 'Byte Var1' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR1 = eINSTANCE.getFile_ByteVar1(); + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); + /** * The meta object literal for the 'Byte Var2' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR2 = eINSTANCE.getFile_ByteVar2(); + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); + /** * The meta object literal for the 'Byte Var3' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR3 = eINSTANCE.getFile_ByteVar3(); + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); + /** * The meta object literal for the 'Byte Var4' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR4 = eINSTANCE.getFile_ByteVar4(); + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); + /** * The meta object literal for the 'Byte Var5' attribute feature. * * * @generated */ - EAttribute FILE__BYTE_VAR5 = eINSTANCE.getFile_ByteVar5(); + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); + /** * The meta object literal for the 'Short Var1' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR1 = eINSTANCE.getFile_ShortVar1(); + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); + /** * The meta object literal for the 'Short Var2' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR2 = eINSTANCE.getFile_ShortVar2(); + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); + /** * The meta object literal for the 'Short Var3' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR3 = eINSTANCE.getFile_ShortVar3(); + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); + /** * The meta object literal for the 'Short Var4' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR4 = eINSTANCE.getFile_ShortVar4(); + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); + /** * The meta object literal for the 'Short Var5' attribute feature. * * * @generated */ - EAttribute FILE__SHORT_VAR5 = eINSTANCE.getFile_ShortVar5(); + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); + /** * The meta object literal for the 'Int Var1' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR1 = eINSTANCE.getFile_IntVar1(); + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); + /** * The meta object literal for the 'Int Var2' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR2 = eINSTANCE.getFile_IntVar2(); + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); + /** * The meta object literal for the 'Int Var3' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR3 = eINSTANCE.getFile_IntVar3(); + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); + /** * The meta object literal for the 'Int Var4' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR4 = eINSTANCE.getFile_IntVar4(); + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); + /** * The meta object literal for the 'Int Var5' attribute feature. * * * @generated */ - EAttribute FILE__INT_VAR5 = eINSTANCE.getFile_IntVar5(); + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); + /** * The meta object literal for the 'Char Var1' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR1 = eINSTANCE.getFile_CharVar1(); + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); + /** * The meta object literal for the 'Char Var2' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR2 = eINSTANCE.getFile_CharVar2(); + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); + /** * The meta object literal for the 'Char Var3' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR3 = eINSTANCE.getFile_CharVar3(); + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); + /** * The meta object literal for the 'Char Var4' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR4 = eINSTANCE.getFile_CharVar4(); + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); + /** * The meta object literal for the 'Char Var5' attribute feature. * * * @generated */ - EAttribute FILE__CHAR_VAR5 = eINSTANCE.getFile_CharVar5(); + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); + /** * The meta object literal for the 'Long Var1' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR1 = eINSTANCE.getFile_LongVar1(); + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); + /** * The meta object literal for the 'Long Var2' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR2 = eINSTANCE.getFile_LongVar2(); + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); + /** * The meta object literal for the 'Long Var3' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR3 = eINSTANCE.getFile_LongVar3(); + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); + /** * The meta object literal for the 'Long Var4' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR4 = eINSTANCE.getFile_LongVar4(); + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); + /** * The meta object literal for the 'Long Var5' attribute feature. * * * @generated */ - EAttribute FILE__LONG_VAR5 = eINSTANCE.getFile_LongVar5(); + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); + /** * The meta object literal for the 'Float Var1' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR1 = eINSTANCE.getFile_FloatVar1(); + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); + /** * The meta object literal for the 'Float Var2' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR2 = eINSTANCE.getFile_FloatVar2(); + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); + /** * The meta object literal for the 'Float Var3' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR3 = eINSTANCE.getFile_FloatVar3(); + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); + /** * The meta object literal for the 'Float Var4' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR4 = eINSTANCE.getFile_FloatVar4(); + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); + /** * The meta object literal for the 'Float Var5' attribute feature. * * * @generated */ - EAttribute FILE__FLOAT_VAR5 = eINSTANCE.getFile_FloatVar5(); + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); + /** * The meta object literal for the 'Double Var1' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR1 = eINSTANCE.getFile_DoubleVar1(); + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); + /** * The meta object literal for the 'Double Var2' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR2 = eINSTANCE.getFile_DoubleVar2(); + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); + /** * The meta object literal for the 'Double Var3' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR3 = eINSTANCE.getFile_DoubleVar3(); + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); + /** * The meta object literal for the 'Double Var4' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR4 = eINSTANCE.getFile_DoubleVar4(); + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); + /** * The meta object literal for the 'Double Var5' attribute feature. * * * @generated */ - EAttribute FILE__DOUBLE_VAR5 = eINSTANCE.getFile_DoubleVar5(); + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); + /** * The meta object literal for the 'Boolean Var1' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR1 = eINSTANCE.getFile_BooleanVar1(); + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); + /** * The meta object literal for the 'Boolean Var2' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR2 = eINSTANCE.getFile_BooleanVar2(); + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); + /** * The meta object literal for the 'Boolean Var3' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR3 = eINSTANCE.getFile_BooleanVar3(); + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); + /** * The meta object literal for the 'Boolean Var4' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR4 = eINSTANCE.getFile_BooleanVar4(); + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); + /** * The meta object literal for the 'Boolean Var5' attribute feature. * * * @generated */ - EAttribute FILE__BOOLEAN_VAR5 = eINSTANCE.getFile_BooleanVar5(); + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); + /** * The meta object literal for the 'String Var1' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR1 = eINSTANCE.getFile_StringVar1(); + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); + /** * The meta object literal for the 'String Var2' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR2 = eINSTANCE.getFile_StringVar2(); + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); + /** * The meta object literal for the 'String Var3' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR3 = eINSTANCE.getFile_StringVar3(); + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); + /** * The meta object literal for the 'String Var4' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR4 = eINSTANCE.getFile_StringVar4(); + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); + /** * The meta object literal for the 'String Var5' attribute feature. * * * @generated */ - EAttribute FILE__STRING_VAR5 = eINSTANCE.getFile_StringVar5(); + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/File.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/Sketch.java similarity index 83% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/File.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/Sketch.java index 5d80249c2..987b716ef 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/File.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/Sketch.java @@ -7,65 +7,65 @@ /** * - * A representation of the model object 'File'. + * A representation of the model object 'Sketch'. * * *

* The following features are supported: *

*
    - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar5 String Var5}
  • *
* - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch() * @model * @generated */ -public interface File extends IModifiable, IContainer { +public interface Sketch extends IModifiable, IContainer { /** * Returns the value of the 'Byte Var1' attribute. * @@ -76,14 +76,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var1' attribute. * @see #setByteVar1(byte) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ByteVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() * @model * @generated */ byte getByteVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar1 Byte Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. * * * @param value the new value of the 'Byte Var1' attribute. @@ -102,14 +102,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var2' attribute. * @see #setByteVar2(byte) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ByteVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() * @model * @generated */ byte getByteVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar2 Byte Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. * * * @param value the new value of the 'Byte Var2' attribute. @@ -128,14 +128,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var3' attribute. * @see #setByteVar3(byte) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ByteVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() * @model * @generated */ byte getByteVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar3 Byte Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. * * * @param value the new value of the 'Byte Var3' attribute. @@ -154,14 +154,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var4' attribute. * @see #setByteVar4(byte) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ByteVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() * @model * @generated */ byte getByteVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar4 Byte Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. * * * @param value the new value of the 'Byte Var4' attribute. @@ -180,14 +180,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var5' attribute. * @see #setByteVar5(byte) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ByteVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() * @model * @generated */ byte getByteVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getByteVar5 Byte Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. * * * @param value the new value of the 'Byte Var5' attribute. @@ -206,14 +206,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var1' attribute. * @see #setShortVar1(short) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ShortVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() * @model * @generated */ short getShortVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar1 Short Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. * * * @param value the new value of the 'Short Var1' attribute. @@ -232,14 +232,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var2' attribute. * @see #setShortVar2(short) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ShortVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() * @model * @generated */ short getShortVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar2 Short Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. * * * @param value the new value of the 'Short Var2' attribute. @@ -258,14 +258,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var3' attribute. * @see #setShortVar3(short) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ShortVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() * @model * @generated */ short getShortVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar3 Short Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. * * * @param value the new value of the 'Short Var3' attribute. @@ -284,14 +284,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var4' attribute. * @see #setShortVar4(short) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ShortVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() * @model * @generated */ short getShortVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar4 Short Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. * * * @param value the new value of the 'Short Var4' attribute. @@ -310,14 +310,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var5' attribute. * @see #setShortVar5(short) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_ShortVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() * @model * @generated */ short getShortVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getShortVar5 Short Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. * * * @param value the new value of the 'Short Var5' attribute. @@ -336,14 +336,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var1' attribute. * @see #setIntVar1(int) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_IntVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() * @model * @generated */ int getIntVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar1 Int Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. * * * @param value the new value of the 'Int Var1' attribute. @@ -362,14 +362,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var2' attribute. * @see #setIntVar2(int) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_IntVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() * @model * @generated */ int getIntVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar2 Int Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. * * * @param value the new value of the 'Int Var2' attribute. @@ -388,14 +388,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var3' attribute. * @see #setIntVar3(int) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_IntVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() * @model * @generated */ int getIntVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar3 Int Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. * * * @param value the new value of the 'Int Var3' attribute. @@ -414,14 +414,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var4' attribute. * @see #setIntVar4(int) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_IntVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() * @model * @generated */ int getIntVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar4 Int Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. * * * @param value the new value of the 'Int Var4' attribute. @@ -440,14 +440,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var5' attribute. * @see #setIntVar5(int) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_IntVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() * @model * @generated */ int getIntVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getIntVar5 Int Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. * * * @param value the new value of the 'Int Var5' attribute. @@ -466,14 +466,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var1' attribute. * @see #setCharVar1(char) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_CharVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() * @model * @generated */ char getCharVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar1 Char Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. * * * @param value the new value of the 'Char Var1' attribute. @@ -492,14 +492,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var2' attribute. * @see #setCharVar2(char) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_CharVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() * @model * @generated */ char getCharVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar2 Char Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. * * * @param value the new value of the 'Char Var2' attribute. @@ -518,14 +518,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var3' attribute. * @see #setCharVar3(char) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_CharVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() * @model * @generated */ char getCharVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar3 Char Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. * * * @param value the new value of the 'Char Var3' attribute. @@ -544,14 +544,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var4' attribute. * @see #setCharVar4(char) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_CharVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() * @model * @generated */ char getCharVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar4 Char Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. * * * @param value the new value of the 'Char Var4' attribute. @@ -570,14 +570,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var5' attribute. * @see #setCharVar5(char) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_CharVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() * @model * @generated */ char getCharVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getCharVar5 Char Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. * * * @param value the new value of the 'Char Var5' attribute. @@ -596,14 +596,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var1' attribute. * @see #setLongVar1(long) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_LongVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() * @model * @generated */ long getLongVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar1 Long Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. * * * @param value the new value of the 'Long Var1' attribute. @@ -622,14 +622,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var2' attribute. * @see #setLongVar2(long) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_LongVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() * @model * @generated */ long getLongVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar2 Long Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. * * * @param value the new value of the 'Long Var2' attribute. @@ -648,14 +648,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var3' attribute. * @see #setLongVar3(long) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_LongVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() * @model * @generated */ long getLongVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar3 Long Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. * * * @param value the new value of the 'Long Var3' attribute. @@ -674,14 +674,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var4' attribute. * @see #setLongVar4(long) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_LongVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() * @model * @generated */ long getLongVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar4 Long Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. * * * @param value the new value of the 'Long Var4' attribute. @@ -700,14 +700,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var5' attribute. * @see #setLongVar5(long) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_LongVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() * @model * @generated */ long getLongVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getLongVar5 Long Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. * * * @param value the new value of the 'Long Var5' attribute. @@ -726,14 +726,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var1' attribute. * @see #setFloatVar1(float) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_FloatVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() * @model * @generated */ float getFloatVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar1 Float Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. * * * @param value the new value of the 'Float Var1' attribute. @@ -752,14 +752,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var2' attribute. * @see #setFloatVar2(float) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_FloatVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() * @model * @generated */ float getFloatVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar2 Float Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. * * * @param value the new value of the 'Float Var2' attribute. @@ -778,14 +778,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var3' attribute. * @see #setFloatVar3(float) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_FloatVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() * @model * @generated */ float getFloatVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar3 Float Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. * * * @param value the new value of the 'Float Var3' attribute. @@ -804,14 +804,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var4' attribute. * @see #setFloatVar4(float) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_FloatVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() * @model * @generated */ float getFloatVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar4 Float Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. * * * @param value the new value of the 'Float Var4' attribute. @@ -830,14 +830,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var5' attribute. * @see #setFloatVar5(float) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_FloatVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() * @model * @generated */ float getFloatVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getFloatVar5 Float Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. * * * @param value the new value of the 'Float Var5' attribute. @@ -856,14 +856,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var1' attribute. * @see #setDoubleVar1(double) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_DoubleVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() * @model * @generated */ double getDoubleVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar1 Double Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. * * * @param value the new value of the 'Double Var1' attribute. @@ -882,14 +882,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var2' attribute. * @see #setDoubleVar2(double) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_DoubleVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() * @model * @generated */ double getDoubleVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar2 Double Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. * * * @param value the new value of the 'Double Var2' attribute. @@ -908,14 +908,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var3' attribute. * @see #setDoubleVar3(double) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_DoubleVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() * @model * @generated */ double getDoubleVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar3 Double Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. * * * @param value the new value of the 'Double Var3' attribute. @@ -934,14 +934,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var4' attribute. * @see #setDoubleVar4(double) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_DoubleVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() * @model * @generated */ double getDoubleVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar4 Double Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. * * * @param value the new value of the 'Double Var4' attribute. @@ -960,14 +960,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var5' attribute. * @see #setDoubleVar5(double) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_DoubleVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() * @model * @generated */ double getDoubleVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getDoubleVar5 Double Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. * * * @param value the new value of the 'Double Var5' attribute. @@ -986,14 +986,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var1' attribute. * @see #setBooleanVar1(boolean) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_BooleanVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() * @model * @generated */ boolean isBooleanVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar1 Boolean Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}' attribute. * * * @param value the new value of the 'Boolean Var1' attribute. @@ -1012,14 +1012,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var2' attribute. * @see #setBooleanVar2(boolean) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_BooleanVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() * @model * @generated */ boolean isBooleanVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar2 Boolean Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. * * * @param value the new value of the 'Boolean Var2' attribute. @@ -1038,14 +1038,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var3' attribute. * @see #setBooleanVar3(boolean) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_BooleanVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() * @model * @generated */ boolean isBooleanVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar3 Boolean Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. * * * @param value the new value of the 'Boolean Var3' attribute. @@ -1064,14 +1064,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var4' attribute. * @see #setBooleanVar4(boolean) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_BooleanVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() * @model * @generated */ boolean isBooleanVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar4 Boolean Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. * * * @param value the new value of the 'Boolean Var4' attribute. @@ -1090,14 +1090,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var5' attribute. * @see #setBooleanVar5(boolean) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_BooleanVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() * @model * @generated */ boolean isBooleanVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#isBooleanVar5 Boolean Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. * * * @param value the new value of the 'Boolean Var5' attribute. @@ -1116,14 +1116,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var1' attribute. * @see #setStringVar1(String) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_StringVar1() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() * @model * @generated */ String getStringVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar1 String Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar1 String Var1}' attribute. * * * @param value the new value of the 'String Var1' attribute. @@ -1142,14 +1142,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var2' attribute. * @see #setStringVar2(String) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_StringVar2() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() * @model * @generated */ String getStringVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar2 String Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar2 String Var2}' attribute. * * * @param value the new value of the 'String Var2' attribute. @@ -1168,14 +1168,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var3' attribute. * @see #setStringVar3(String) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_StringVar3() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() * @model * @generated */ String getStringVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar3 String Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar3 String Var3}' attribute. * * * @param value the new value of the 'String Var3' attribute. @@ -1194,14 +1194,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var4' attribute. * @see #setStringVar4(String) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_StringVar4() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() * @model * @generated */ String getStringVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar4 String Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar4 String Var4}' attribute. * * * @param value the new value of the 'String Var4' attribute. @@ -1220,14 +1220,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var5' attribute. * @see #setStringVar5(String) - * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getFile_StringVar5() + * @see com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() * @model * @generated */ String getStringVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.File#getStringVar5 String Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch#getStringVar5 String Var5}' attribute. * * * @param value the new value of the 'String Var5' attribute. @@ -1236,4 +1236,4 @@ public interface File extends IModifiable, IContainer { */ void setStringVar5(String value); -} // File +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactFactoryImpl.java index 6340adcf1..daf7945f6 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactFactoryImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -57,7 +57,7 @@ public ArtefactFactoryImpl() { public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ArtefactPackage.DIAGRAM: return createDiagram(); - case ArtefactPackage.FILE: return createFile(); + case ArtefactPackage.SKETCH: return createSketch(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } @@ -78,9 +78,9 @@ public Diagram createDiagram() { * * @generated */ - public File createFile() { - FileImpl file = new FileImpl(); - return file; + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactPackageImpl.java index 15ece3b2e..1bf66a2db 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactPackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -5,8 +5,8 @@ import com.specmate.migration.test.baseline.testmodel.artefact.ArtefactFactory; import com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage; import com.specmate.migration.test.baseline.testmodel.artefact.Diagram; +import com.specmate.migration.test.baseline.testmodel.artefact.Sketch; -import com.specmate.migration.test.baseline.testmodel.artefact.File; import com.specmate.migration.test.baseline.testmodel.base.BasePackage; import com.specmate.migration.test.baseline.testmodel.base.impl.BasePackageImpl; @@ -36,7 +36,7 @@ public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage * * @generated */ - private EClass fileEClass = null; + private EClass sketchEClass = null; /** * Creates an instance of the model Package, registered with @@ -118,8 +118,8 @@ public EClass getDiagram() { * * @generated */ - public EClass getFile() { - return fileEClass; + public EClass getSketch() { + return sketchEClass; } /** @@ -127,8 +127,8 @@ public EClass getFile() { * * @generated */ - public EAttribute getFile_ByteVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(0); + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); } /** @@ -136,8 +136,8 @@ public EAttribute getFile_ByteVar1() { * * @generated */ - public EAttribute getFile_ByteVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(1); + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); } /** @@ -145,8 +145,8 @@ public EAttribute getFile_ByteVar2() { * * @generated */ - public EAttribute getFile_ByteVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(2); + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); } /** @@ -154,8 +154,8 @@ public EAttribute getFile_ByteVar3() { * * @generated */ - public EAttribute getFile_ByteVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(3); + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); } /** @@ -163,8 +163,8 @@ public EAttribute getFile_ByteVar4() { * * @generated */ - public EAttribute getFile_ByteVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(4); + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); } /** @@ -172,8 +172,8 @@ public EAttribute getFile_ByteVar5() { * * @generated */ - public EAttribute getFile_ShortVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(5); + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); } /** @@ -181,8 +181,8 @@ public EAttribute getFile_ShortVar1() { * * @generated */ - public EAttribute getFile_ShortVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(6); + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); } /** @@ -190,8 +190,8 @@ public EAttribute getFile_ShortVar2() { * * @generated */ - public EAttribute getFile_ShortVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(7); + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); } /** @@ -199,8 +199,8 @@ public EAttribute getFile_ShortVar3() { * * @generated */ - public EAttribute getFile_ShortVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(8); + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); } /** @@ -208,8 +208,8 @@ public EAttribute getFile_ShortVar4() { * * @generated */ - public EAttribute getFile_ShortVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(9); + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); } /** @@ -217,8 +217,8 @@ public EAttribute getFile_ShortVar5() { * * @generated */ - public EAttribute getFile_IntVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(10); + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); } /** @@ -226,8 +226,8 @@ public EAttribute getFile_IntVar1() { * * @generated */ - public EAttribute getFile_IntVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(11); + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); } /** @@ -235,8 +235,8 @@ public EAttribute getFile_IntVar2() { * * @generated */ - public EAttribute getFile_IntVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(12); + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); } /** @@ -244,8 +244,8 @@ public EAttribute getFile_IntVar3() { * * @generated */ - public EAttribute getFile_IntVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(13); + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); } /** @@ -253,8 +253,8 @@ public EAttribute getFile_IntVar4() { * * @generated */ - public EAttribute getFile_IntVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(14); + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); } /** @@ -262,8 +262,8 @@ public EAttribute getFile_IntVar5() { * * @generated */ - public EAttribute getFile_CharVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(15); + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); } /** @@ -271,8 +271,8 @@ public EAttribute getFile_CharVar1() { * * @generated */ - public EAttribute getFile_CharVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(16); + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); } /** @@ -280,8 +280,8 @@ public EAttribute getFile_CharVar2() { * * @generated */ - public EAttribute getFile_CharVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(17); + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); } /** @@ -289,8 +289,8 @@ public EAttribute getFile_CharVar3() { * * @generated */ - public EAttribute getFile_CharVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(18); + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); } /** @@ -298,8 +298,8 @@ public EAttribute getFile_CharVar4() { * * @generated */ - public EAttribute getFile_CharVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(19); + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); } /** @@ -307,8 +307,8 @@ public EAttribute getFile_CharVar5() { * * @generated */ - public EAttribute getFile_LongVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(20); + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); } /** @@ -316,8 +316,8 @@ public EAttribute getFile_LongVar1() { * * @generated */ - public EAttribute getFile_LongVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(21); + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); } /** @@ -325,8 +325,8 @@ public EAttribute getFile_LongVar2() { * * @generated */ - public EAttribute getFile_LongVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(22); + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); } /** @@ -334,8 +334,8 @@ public EAttribute getFile_LongVar3() { * * @generated */ - public EAttribute getFile_LongVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(23); + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); } /** @@ -343,8 +343,8 @@ public EAttribute getFile_LongVar4() { * * @generated */ - public EAttribute getFile_LongVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(24); + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); } /** @@ -352,8 +352,8 @@ public EAttribute getFile_LongVar5() { * * @generated */ - public EAttribute getFile_FloatVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(25); + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); } /** @@ -361,8 +361,8 @@ public EAttribute getFile_FloatVar1() { * * @generated */ - public EAttribute getFile_FloatVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(26); + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); } /** @@ -370,8 +370,8 @@ public EAttribute getFile_FloatVar2() { * * @generated */ - public EAttribute getFile_FloatVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(27); + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); } /** @@ -379,8 +379,8 @@ public EAttribute getFile_FloatVar3() { * * @generated */ - public EAttribute getFile_FloatVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(28); + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); } /** @@ -388,8 +388,8 @@ public EAttribute getFile_FloatVar4() { * * @generated */ - public EAttribute getFile_FloatVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(29); + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); } /** @@ -397,8 +397,8 @@ public EAttribute getFile_FloatVar5() { * * @generated */ - public EAttribute getFile_DoubleVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(30); + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); } /** @@ -406,8 +406,8 @@ public EAttribute getFile_DoubleVar1() { * * @generated */ - public EAttribute getFile_DoubleVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(31); + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); } /** @@ -415,8 +415,8 @@ public EAttribute getFile_DoubleVar2() { * * @generated */ - public EAttribute getFile_DoubleVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(32); + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); } /** @@ -424,8 +424,8 @@ public EAttribute getFile_DoubleVar3() { * * @generated */ - public EAttribute getFile_DoubleVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(33); + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); } /** @@ -433,8 +433,8 @@ public EAttribute getFile_DoubleVar4() { * * @generated */ - public EAttribute getFile_DoubleVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(34); + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); } /** @@ -442,8 +442,8 @@ public EAttribute getFile_DoubleVar5() { * * @generated */ - public EAttribute getFile_BooleanVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(35); + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); } /** @@ -451,8 +451,8 @@ public EAttribute getFile_BooleanVar1() { * * @generated */ - public EAttribute getFile_BooleanVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(36); + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); } /** @@ -460,8 +460,8 @@ public EAttribute getFile_BooleanVar2() { * * @generated */ - public EAttribute getFile_BooleanVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(37); + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); } /** @@ -469,8 +469,8 @@ public EAttribute getFile_BooleanVar3() { * * @generated */ - public EAttribute getFile_BooleanVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(38); + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); } /** @@ -478,8 +478,8 @@ public EAttribute getFile_BooleanVar4() { * * @generated */ - public EAttribute getFile_BooleanVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(39); + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); } /** @@ -487,8 +487,8 @@ public EAttribute getFile_BooleanVar5() { * * @generated */ - public EAttribute getFile_StringVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(40); + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); } /** @@ -496,8 +496,8 @@ public EAttribute getFile_StringVar1() { * * @generated */ - public EAttribute getFile_StringVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(41); + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); } /** @@ -505,8 +505,8 @@ public EAttribute getFile_StringVar2() { * * @generated */ - public EAttribute getFile_StringVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(42); + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); } /** @@ -514,8 +514,8 @@ public EAttribute getFile_StringVar3() { * * @generated */ - public EAttribute getFile_StringVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(43); + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); } /** @@ -523,8 +523,8 @@ public EAttribute getFile_StringVar4() { * * @generated */ - public EAttribute getFile_StringVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(44); + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); } /** @@ -557,52 +557,52 @@ public void createPackageContents() { // Create classes and their features diagramEClass = createEClass(DIAGRAM); - fileEClass = createEClass(FILE); - createEAttribute(fileEClass, FILE__BYTE_VAR1); - createEAttribute(fileEClass, FILE__BYTE_VAR2); - createEAttribute(fileEClass, FILE__BYTE_VAR3); - createEAttribute(fileEClass, FILE__BYTE_VAR4); - createEAttribute(fileEClass, FILE__BYTE_VAR5); - createEAttribute(fileEClass, FILE__SHORT_VAR1); - createEAttribute(fileEClass, FILE__SHORT_VAR2); - createEAttribute(fileEClass, FILE__SHORT_VAR3); - createEAttribute(fileEClass, FILE__SHORT_VAR4); - createEAttribute(fileEClass, FILE__SHORT_VAR5); - createEAttribute(fileEClass, FILE__INT_VAR1); - createEAttribute(fileEClass, FILE__INT_VAR2); - createEAttribute(fileEClass, FILE__INT_VAR3); - createEAttribute(fileEClass, FILE__INT_VAR4); - createEAttribute(fileEClass, FILE__INT_VAR5); - createEAttribute(fileEClass, FILE__CHAR_VAR1); - createEAttribute(fileEClass, FILE__CHAR_VAR2); - createEAttribute(fileEClass, FILE__CHAR_VAR3); - createEAttribute(fileEClass, FILE__CHAR_VAR4); - createEAttribute(fileEClass, FILE__CHAR_VAR5); - createEAttribute(fileEClass, FILE__LONG_VAR1); - createEAttribute(fileEClass, FILE__LONG_VAR2); - createEAttribute(fileEClass, FILE__LONG_VAR3); - createEAttribute(fileEClass, FILE__LONG_VAR4); - createEAttribute(fileEClass, FILE__LONG_VAR5); - createEAttribute(fileEClass, FILE__FLOAT_VAR1); - createEAttribute(fileEClass, FILE__FLOAT_VAR2); - createEAttribute(fileEClass, FILE__FLOAT_VAR3); - createEAttribute(fileEClass, FILE__FLOAT_VAR4); - createEAttribute(fileEClass, FILE__FLOAT_VAR5); - createEAttribute(fileEClass, FILE__DOUBLE_VAR1); - createEAttribute(fileEClass, FILE__DOUBLE_VAR2); - createEAttribute(fileEClass, FILE__DOUBLE_VAR3); - createEAttribute(fileEClass, FILE__DOUBLE_VAR4); - createEAttribute(fileEClass, FILE__DOUBLE_VAR5); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR1); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR2); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR3); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR4); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR5); - createEAttribute(fileEClass, FILE__STRING_VAR1); - createEAttribute(fileEClass, FILE__STRING_VAR2); - createEAttribute(fileEClass, FILE__STRING_VAR3); - createEAttribute(fileEClass, FILE__STRING_VAR4); - createEAttribute(fileEClass, FILE__STRING_VAR5); + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); } /** @@ -638,58 +638,58 @@ public void initializePackageContents() { // Add supertypes to classes diagramEClass.getESuperTypes().add(theBasePackage.getIModifiable()); diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); - fileEClass.getESuperTypes().add(theBasePackage.getIModifiable()); - fileEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); // Initialize classes, features, and operations; add parameters initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEClass(fileEClass, File.class, "File", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEAttribute(getFile_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); // Create resource createResource(eNS_URI); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/FileImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/SketchImpl.java similarity index 63% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/FileImpl.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/SketchImpl.java index bf2a6c472..5f002bcad 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/FileImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/impl/SketchImpl.java @@ -3,7 +3,7 @@ package com.specmate.migration.test.baseline.testmodel.artefact.impl; import com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage; -import com.specmate.migration.test.baseline.testmodel.artefact.File; +import com.specmate.migration.test.baseline.testmodel.artefact.Sketch; import com.specmate.migration.test.baseline.testmodel.base.BasePackage; import com.specmate.migration.test.baseline.testmodel.base.IContainer; @@ -25,65 +25,65 @@ /** * - * An implementation of the model object 'File'. + * An implementation of the model object 'Sketch'. * *

* The following features are implemented: *

*
    - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#isTested Tested}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getId Id}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getContents Contents}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.FileImpl#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.baseline.testmodel.artefact.impl.SketchImpl#getStringVar5 String Var5}
  • *
* * @generated */ -public class FileImpl extends MinimalEObjectImpl.Container implements File { +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { /** * The default value of the '{@link #isTested() Tested}' attribute. * @@ -559,7 +559,7 @@ public class FileImpl extends MinimalEObjectImpl.Container implements File { * * @generated */ - protected FileImpl() { + protected SketchImpl() { super(); } @@ -570,7 +570,7 @@ protected FileImpl() { */ @Override protected EClass eStaticClass() { - return ArtefactPackage.Literals.FILE; + return ArtefactPackage.Literals.SKETCH; } /** @@ -589,7 +589,7 @@ protected int eStaticFeatureCount() { * @generated */ public boolean isTested() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); } /** @@ -598,7 +598,7 @@ public boolean isTested() { * @generated */ public void setTested(boolean newTested) { - eDynamicSet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + eDynamicSet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); } /** @@ -607,7 +607,7 @@ public void setTested(boolean newTested) { * @generated */ public String getId() { - return (String)eDynamicGet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); } /** @@ -616,7 +616,7 @@ public String getId() { * @generated */ public void setId(String newId) { - eDynamicSet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, newId); + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); } /** @@ -626,7 +626,7 @@ public void setId(String newId) { */ @SuppressWarnings("unchecked") public EList getContents() { - return (EList)eDynamicGet(ArtefactPackage.FILE__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); } /** @@ -635,7 +635,7 @@ public EList getContents() { * @generated */ public byte getByteVar1() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); } /** @@ -644,7 +644,7 @@ public byte getByteVar1() { * @generated */ public void setByteVar1(byte newByteVar1) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, newByteVar1); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); } /** @@ -653,7 +653,7 @@ public void setByteVar1(byte newByteVar1) { * @generated */ public byte getByteVar2() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); } /** @@ -662,7 +662,7 @@ public byte getByteVar2() { * @generated */ public void setByteVar2(byte newByteVar2) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, newByteVar2); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); } /** @@ -671,7 +671,7 @@ public void setByteVar2(byte newByteVar2) { * @generated */ public byte getByteVar3() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); } /** @@ -680,7 +680,7 @@ public byte getByteVar3() { * @generated */ public void setByteVar3(byte newByteVar3) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, newByteVar3); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); } /** @@ -689,7 +689,7 @@ public void setByteVar3(byte newByteVar3) { * @generated */ public byte getByteVar4() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); } /** @@ -698,7 +698,7 @@ public byte getByteVar4() { * @generated */ public void setByteVar4(byte newByteVar4) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, newByteVar4); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); } /** @@ -707,7 +707,7 @@ public void setByteVar4(byte newByteVar4) { * @generated */ public byte getByteVar5() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); } /** @@ -716,7 +716,7 @@ public byte getByteVar5() { * @generated */ public void setByteVar5(byte newByteVar5) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, newByteVar5); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); } /** @@ -725,7 +725,7 @@ public void setByteVar5(byte newByteVar5) { * @generated */ public short getShortVar1() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); } /** @@ -734,7 +734,7 @@ public short getShortVar1() { * @generated */ public void setShortVar1(short newShortVar1) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, newShortVar1); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); } /** @@ -743,7 +743,7 @@ public void setShortVar1(short newShortVar1) { * @generated */ public short getShortVar2() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); } /** @@ -752,7 +752,7 @@ public short getShortVar2() { * @generated */ public void setShortVar2(short newShortVar2) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, newShortVar2); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); } /** @@ -761,7 +761,7 @@ public void setShortVar2(short newShortVar2) { * @generated */ public short getShortVar3() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); } /** @@ -770,7 +770,7 @@ public short getShortVar3() { * @generated */ public void setShortVar3(short newShortVar3) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, newShortVar3); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); } /** @@ -779,7 +779,7 @@ public void setShortVar3(short newShortVar3) { * @generated */ public short getShortVar4() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); } /** @@ -788,7 +788,7 @@ public short getShortVar4() { * @generated */ public void setShortVar4(short newShortVar4) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, newShortVar4); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); } /** @@ -797,7 +797,7 @@ public void setShortVar4(short newShortVar4) { * @generated */ public short getShortVar5() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); } /** @@ -806,7 +806,7 @@ public short getShortVar5() { * @generated */ public void setShortVar5(short newShortVar5) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, newShortVar5); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); } /** @@ -815,7 +815,7 @@ public void setShortVar5(short newShortVar5) { * @generated */ public int getIntVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); } /** @@ -824,7 +824,7 @@ public int getIntVar1() { * @generated */ public void setIntVar1(int newIntVar1) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, newIntVar1); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); } /** @@ -833,7 +833,7 @@ public void setIntVar1(int newIntVar1) { * @generated */ public int getIntVar2() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); } /** @@ -842,7 +842,7 @@ public int getIntVar2() { * @generated */ public void setIntVar2(int newIntVar2) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, newIntVar2); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); } /** @@ -851,7 +851,7 @@ public void setIntVar2(int newIntVar2) { * @generated */ public int getIntVar3() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); } /** @@ -860,7 +860,7 @@ public int getIntVar3() { * @generated */ public void setIntVar3(int newIntVar3) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, newIntVar3); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); } /** @@ -869,7 +869,7 @@ public void setIntVar3(int newIntVar3) { * @generated */ public int getIntVar4() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); } /** @@ -878,7 +878,7 @@ public int getIntVar4() { * @generated */ public void setIntVar4(int newIntVar4) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, newIntVar4); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); } /** @@ -887,7 +887,7 @@ public void setIntVar4(int newIntVar4) { * @generated */ public int getIntVar5() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); } /** @@ -896,7 +896,7 @@ public int getIntVar5() { * @generated */ public void setIntVar5(int newIntVar5) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, newIntVar5); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); } /** @@ -905,7 +905,7 @@ public void setIntVar5(int newIntVar5) { * @generated */ public char getCharVar1() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); } /** @@ -914,7 +914,7 @@ public char getCharVar1() { * @generated */ public void setCharVar1(char newCharVar1) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, newCharVar1); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); } /** @@ -923,7 +923,7 @@ public void setCharVar1(char newCharVar1) { * @generated */ public char getCharVar2() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); } /** @@ -932,7 +932,7 @@ public char getCharVar2() { * @generated */ public void setCharVar2(char newCharVar2) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, newCharVar2); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); } /** @@ -941,7 +941,7 @@ public void setCharVar2(char newCharVar2) { * @generated */ public char getCharVar3() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); } /** @@ -950,7 +950,7 @@ public char getCharVar3() { * @generated */ public void setCharVar3(char newCharVar3) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, newCharVar3); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); } /** @@ -959,7 +959,7 @@ public void setCharVar3(char newCharVar3) { * @generated */ public char getCharVar4() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); } /** @@ -968,7 +968,7 @@ public char getCharVar4() { * @generated */ public void setCharVar4(char newCharVar4) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, newCharVar4); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); } /** @@ -977,7 +977,7 @@ public void setCharVar4(char newCharVar4) { * @generated */ public char getCharVar5() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); } /** @@ -986,7 +986,7 @@ public char getCharVar5() { * @generated */ public void setCharVar5(char newCharVar5) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, newCharVar5); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); } /** @@ -995,7 +995,7 @@ public void setCharVar5(char newCharVar5) { * @generated */ public long getLongVar1() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); } /** @@ -1004,7 +1004,7 @@ public long getLongVar1() { * @generated */ public void setLongVar1(long newLongVar1) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, newLongVar1); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); } /** @@ -1013,7 +1013,7 @@ public void setLongVar1(long newLongVar1) { * @generated */ public long getLongVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); } /** @@ -1022,7 +1022,7 @@ public long getLongVar2() { * @generated */ public void setLongVar2(long newLongVar2) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, newLongVar2); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); } /** @@ -1031,7 +1031,7 @@ public void setLongVar2(long newLongVar2) { * @generated */ public long getLongVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); } /** @@ -1040,7 +1040,7 @@ public long getLongVar3() { * @generated */ public void setLongVar3(long newLongVar3) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, newLongVar3); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); } /** @@ -1049,7 +1049,7 @@ public void setLongVar3(long newLongVar3) { * @generated */ public long getLongVar4() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); } /** @@ -1058,7 +1058,7 @@ public long getLongVar4() { * @generated */ public void setLongVar4(long newLongVar4) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, newLongVar4); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); } /** @@ -1067,7 +1067,7 @@ public void setLongVar4(long newLongVar4) { * @generated */ public long getLongVar5() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); } /** @@ -1076,7 +1076,7 @@ public long getLongVar5() { * @generated */ public void setLongVar5(long newLongVar5) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, newLongVar5); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); } /** @@ -1085,7 +1085,7 @@ public void setLongVar5(long newLongVar5) { * @generated */ public float getFloatVar1() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); } /** @@ -1094,7 +1094,7 @@ public float getFloatVar1() { * @generated */ public void setFloatVar1(float newFloatVar1) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, newFloatVar1); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); } /** @@ -1103,7 +1103,7 @@ public void setFloatVar1(float newFloatVar1) { * @generated */ public float getFloatVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); } /** @@ -1112,7 +1112,7 @@ public float getFloatVar2() { * @generated */ public void setFloatVar2(float newFloatVar2) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, newFloatVar2); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); } /** @@ -1121,7 +1121,7 @@ public void setFloatVar2(float newFloatVar2) { * @generated */ public float getFloatVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); } /** @@ -1130,7 +1130,7 @@ public float getFloatVar3() { * @generated */ public void setFloatVar3(float newFloatVar3) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, newFloatVar3); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); } /** @@ -1139,7 +1139,7 @@ public void setFloatVar3(float newFloatVar3) { * @generated */ public float getFloatVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); } /** @@ -1148,7 +1148,7 @@ public float getFloatVar4() { * @generated */ public void setFloatVar4(float newFloatVar4) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, newFloatVar4); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); } /** @@ -1157,7 +1157,7 @@ public void setFloatVar4(float newFloatVar4) { * @generated */ public float getFloatVar5() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); } /** @@ -1166,7 +1166,7 @@ public float getFloatVar5() { * @generated */ public void setFloatVar5(float newFloatVar5) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, newFloatVar5); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); } /** @@ -1175,7 +1175,7 @@ public void setFloatVar5(float newFloatVar5) { * @generated */ public double getDoubleVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); } /** @@ -1184,7 +1184,7 @@ public double getDoubleVar1() { * @generated */ public void setDoubleVar1(double newDoubleVar1) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, newDoubleVar1); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); } /** @@ -1193,7 +1193,7 @@ public void setDoubleVar1(double newDoubleVar1) { * @generated */ public double getDoubleVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); } /** @@ -1202,7 +1202,7 @@ public double getDoubleVar2() { * @generated */ public void setDoubleVar2(double newDoubleVar2) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, newDoubleVar2); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); } /** @@ -1211,7 +1211,7 @@ public void setDoubleVar2(double newDoubleVar2) { * @generated */ public double getDoubleVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); } /** @@ -1220,7 +1220,7 @@ public double getDoubleVar3() { * @generated */ public void setDoubleVar3(double newDoubleVar3) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, newDoubleVar3); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); } /** @@ -1229,7 +1229,7 @@ public void setDoubleVar3(double newDoubleVar3) { * @generated */ public double getDoubleVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); } /** @@ -1238,7 +1238,7 @@ public double getDoubleVar4() { * @generated */ public void setDoubleVar4(double newDoubleVar4) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, newDoubleVar4); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); } /** @@ -1247,7 +1247,7 @@ public void setDoubleVar4(double newDoubleVar4) { * @generated */ public double getDoubleVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); } /** @@ -1256,7 +1256,7 @@ public double getDoubleVar5() { * @generated */ public void setDoubleVar5(double newDoubleVar5) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, newDoubleVar5); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); } /** @@ -1265,7 +1265,7 @@ public void setDoubleVar5(double newDoubleVar5) { * @generated */ public boolean isBooleanVar1() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); } /** @@ -1274,7 +1274,7 @@ public boolean isBooleanVar1() { * @generated */ public void setBooleanVar1(boolean newBooleanVar1) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, newBooleanVar1); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); } /** @@ -1283,7 +1283,7 @@ public void setBooleanVar1(boolean newBooleanVar1) { * @generated */ public boolean isBooleanVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); } /** @@ -1292,7 +1292,7 @@ public boolean isBooleanVar2() { * @generated */ public void setBooleanVar2(boolean newBooleanVar2) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, newBooleanVar2); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); } /** @@ -1301,7 +1301,7 @@ public void setBooleanVar2(boolean newBooleanVar2) { * @generated */ public boolean isBooleanVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); } /** @@ -1310,7 +1310,7 @@ public boolean isBooleanVar3() { * @generated */ public void setBooleanVar3(boolean newBooleanVar3) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, newBooleanVar3); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); } /** @@ -1319,7 +1319,7 @@ public void setBooleanVar3(boolean newBooleanVar3) { * @generated */ public boolean isBooleanVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); } /** @@ -1328,7 +1328,7 @@ public boolean isBooleanVar4() { * @generated */ public void setBooleanVar4(boolean newBooleanVar4) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, newBooleanVar4); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); } /** @@ -1337,7 +1337,7 @@ public void setBooleanVar4(boolean newBooleanVar4) { * @generated */ public boolean isBooleanVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); } /** @@ -1346,7 +1346,7 @@ public boolean isBooleanVar5() { * @generated */ public void setBooleanVar5(boolean newBooleanVar5) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, newBooleanVar5); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); } /** @@ -1355,7 +1355,7 @@ public void setBooleanVar5(boolean newBooleanVar5) { * @generated */ public String getStringVar1() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); } /** @@ -1364,7 +1364,7 @@ public String getStringVar1() { * @generated */ public void setStringVar1(String newStringVar1) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, newStringVar1); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); } /** @@ -1373,7 +1373,7 @@ public void setStringVar1(String newStringVar1) { * @generated */ public String getStringVar2() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); } /** @@ -1382,7 +1382,7 @@ public String getStringVar2() { * @generated */ public void setStringVar2(String newStringVar2) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, newStringVar2); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); } /** @@ -1391,7 +1391,7 @@ public void setStringVar2(String newStringVar2) { * @generated */ public String getStringVar3() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); } /** @@ -1400,7 +1400,7 @@ public String getStringVar3() { * @generated */ public void setStringVar3(String newStringVar3) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, newStringVar3); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); } /** @@ -1409,7 +1409,7 @@ public void setStringVar3(String newStringVar3) { * @generated */ public String getStringVar4() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); } /** @@ -1418,7 +1418,7 @@ public String getStringVar4() { * @generated */ public void setStringVar4(String newStringVar4) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, newStringVar4); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); } /** @@ -1427,7 +1427,7 @@ public void setStringVar4(String newStringVar4) { * @generated */ public String getStringVar5() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); } /** @@ -1436,7 +1436,7 @@ public String getStringVar5() { * @generated */ public void setStringVar5(String newStringVar5) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, newStringVar5); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); } /** @@ -1447,7 +1447,7 @@ public void setStringVar5(String newStringVar5) { @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); @@ -1461,101 +1461,101 @@ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested(); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return getId(); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return getContents(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1(); - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2(); - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3(); - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4(); - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5(); - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1(); - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2(); - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3(); - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4(); - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5(); - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1(); - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2(); - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3(); - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4(); - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5(); - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1(); - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2(); - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3(); - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4(); - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5(); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1(); - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2(); - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3(); - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4(); - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5(); - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1(); - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2(); - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3(); - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4(); - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5(); - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1(); - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2(); - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3(); - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4(); - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5(); - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1(); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2(); - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3(); - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4(); - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5(); - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return getStringVar1(); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return getStringVar2(); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return getStringVar3(); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return getStringVar4(); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return getStringVar5(); } return super.eGet(featureID, resolve, coreType); @@ -1570,149 +1570,149 @@ public Object eGet(int featureID, boolean resolve, boolean coreType) { @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested((Boolean)newValue); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId((String)newValue); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); getContents().addAll((Collection)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5((Byte)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5((Short)newValue); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5((Character)newValue); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5((Long)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5((Float)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5((Double)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5((String)newValue); return; } @@ -1727,148 +1727,148 @@ public void eSet(int featureID, Object newValue) { @Override public void eUnset(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested(TESTED_EDEFAULT); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId(ID_EDEFAULT); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1(BYTE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2(BYTE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3(BYTE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4(BYTE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5(BYTE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1(SHORT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2(SHORT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3(SHORT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4(SHORT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5(SHORT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1(INT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2(INT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3(INT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4(INT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5(INT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1(CHAR_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2(CHAR_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3(CHAR_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4(CHAR_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5(CHAR_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1(LONG_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2(LONG_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3(LONG_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4(LONG_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5(LONG_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1(FLOAT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2(FLOAT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3(FLOAT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4(FLOAT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5(FLOAT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1(DOUBLE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2(DOUBLE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3(DOUBLE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4(DOUBLE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5(DOUBLE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1(STRING_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2(STRING_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3(STRING_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4(STRING_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5(STRING_VAR5_EDEFAULT); return; } @@ -1883,101 +1883,101 @@ public void eUnset(int featureID) { @Override public boolean eIsSet(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested() != TESTED_EDEFAULT; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return !getContents().isEmpty(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1() != BYTE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2() != BYTE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3() != BYTE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4() != BYTE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5() != BYTE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1() != SHORT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2() != SHORT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3() != SHORT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4() != SHORT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5() != SHORT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1() != INT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2() != INT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3() != INT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4() != INT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5() != INT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1() != CHAR_VAR1_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2() != CHAR_VAR2_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3() != CHAR_VAR3_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4() != CHAR_VAR4_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5() != CHAR_VAR5_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1() != LONG_VAR1_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2() != LONG_VAR2_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3() != LONG_VAR3_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4() != LONG_VAR4_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5() != LONG_VAR5_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1() != FLOAT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2() != FLOAT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3() != FLOAT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4() != FLOAT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5() != FLOAT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1() != BOOLEAN_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return STRING_VAR1_EDEFAULT == null ? getStringVar1() != null : !STRING_VAR1_EDEFAULT.equals(getStringVar1()); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return STRING_VAR2_EDEFAULT == null ? getStringVar2() != null : !STRING_VAR2_EDEFAULT.equals(getStringVar2()); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return STRING_VAR3_EDEFAULT == null ? getStringVar3() != null : !STRING_VAR3_EDEFAULT.equals(getStringVar3()); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return STRING_VAR4_EDEFAULT == null ? getStringVar4() != null : !STRING_VAR4_EDEFAULT.equals(getStringVar4()); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return STRING_VAR5_EDEFAULT == null ? getStringVar5() != null : !STRING_VAR5_EDEFAULT.equals(getStringVar5()); } return super.eIsSet(featureID); @@ -1992,7 +1992,7 @@ public boolean eIsSet(int featureID) { public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__ID: return BasePackage.IID__ID; + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; default: return -1; } } @@ -2003,7 +2003,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; default: return -1; } } @@ -2019,7 +2019,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (baseFeatureID) { - case BasePackage.IID__ID: return ArtefactPackage.FILE__ID; + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; default: return -1; } } @@ -2030,11 +2030,11 @@ public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (baseFeatureID) { - case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.FILE__CONTENTS; + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } -} //FileImpl +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactAdapterFactory.java index 284fffe2c..8a85d8bee 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -78,8 +78,8 @@ public Adapter caseDiagram(Diagram object) { return createDiagramAdapter(); } @Override - public Adapter caseFile(File object) { - return createFileAdapter(); + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); } @Override public Adapter caseITestable(ITestable object) { @@ -136,16 +136,16 @@ public Adapter createDiagramAdapter() { } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.baseline.testmodel.artefact.File File}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.baseline.testmodel.artefact.Sketch Sketch}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.baseline.testmodel.artefact.File + * @see com.specmate.migration.test.baseline.testmodel.artefact.Sketch * @generated */ - public Adapter createFileAdapter() { + public Adapter createSketchAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactSwitch.java index 8f778dd92..84154bd22 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/baseline/testmodel/artefact/util/ArtefactSwitch.java @@ -83,14 +83,14 @@ protected T doSwitch(int classifierID, EObject theEObject) { if (result == null) result = defaultCase(theEObject); return result; } - case ArtefactPackage.FILE: { - File file = (File)theEObject; - T result = caseFile(file); - if (result == null) result = caseIModifiable(file); - if (result == null) result = caseIContainer(file); - if (result == null) result = caseITestable(file); - if (result == null) result = caseIContentElement(file); - if (result == null) result = caseIID(file); + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseIID(sketch); if (result == null) result = defaultCase(theEObject); return result; } @@ -114,17 +114,17 @@ public T caseDiagram(Diagram object) { } /** - * Returns the result of interpreting the object as an instance of 'File'. + * Returns the result of interpreting the object as an instance of 'Sketch'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'File'. + * @return the result of interpreting the object as an instance of 'Sketch'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseFile(File object) { + public T caseSketch(Sketch object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactFactory.java index 28adc0892..461e61117 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactFactory.java @@ -31,13 +31,13 @@ public interface ArtefactFactory extends EFactory { Diagram createDiagram(); /** - * Returns a new object of class 'File'. + * Returns a new object of class 'Sketch'. * * - * @return a new object of class 'File'. + * @return a new object of class 'Sketch'. * @generated */ - File createFile(); + Sketch createSketch(); /** * Returns the package supported by this factory. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactPackage.java index 5096e76bb..bdf85f262 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactPackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/ArtefactPackage.java @@ -113,14 +113,14 @@ public interface ArtefactPackage extends EPackage { int DIAGRAM_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** - * The meta object id for the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl File}' class. + * The meta object id for the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - int FILE = 1; + int SKETCH = 1; /** * The feature id for the 'Tested' attribute. @@ -129,7 +129,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__TESTED = BasePackage.IMODIFIABLE__TESTED; + int SKETCH__TESTED = BasePackage.IMODIFIABLE__TESTED; /** * The feature id for the 'Id' attribute. @@ -138,7 +138,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; /** * The feature id for the 'Contents' containment reference list. @@ -147,7 +147,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; /** * The feature id for the 'Byte Var1' attribute. @@ -156,7 +156,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; /** * The feature id for the 'Byte Var2' attribute. @@ -165,7 +165,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; /** * The feature id for the 'Byte Var3' attribute. @@ -174,7 +174,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; /** * The feature id for the 'Byte Var4' attribute. @@ -183,7 +183,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; /** * The feature id for the 'Byte Var5' attribute. @@ -192,7 +192,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; /** * The feature id for the 'Short Var1' attribute. @@ -201,7 +201,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; /** * The feature id for the 'Short Var2' attribute. @@ -210,7 +210,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; /** * The feature id for the 'Short Var3' attribute. @@ -219,7 +219,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; /** * The feature id for the 'Short Var4' attribute. @@ -228,7 +228,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; /** * The feature id for the 'Short Var5' attribute. @@ -237,7 +237,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; /** * The feature id for the 'Int Var1' attribute. @@ -246,7 +246,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; /** * The feature id for the 'Int Var2' attribute. @@ -255,7 +255,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; /** * The feature id for the 'Int Var3' attribute. @@ -264,7 +264,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; /** * The feature id for the 'Int Var4' attribute. @@ -273,7 +273,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; /** * The feature id for the 'Int Var5' attribute. @@ -282,7 +282,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; /** * The feature id for the 'Char Var1' attribute. @@ -291,7 +291,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; /** * The feature id for the 'Char Var2' attribute. @@ -300,7 +300,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; /** * The feature id for the 'Char Var3' attribute. @@ -309,7 +309,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; /** * The feature id for the 'Char Var4' attribute. @@ -318,7 +318,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; /** * The feature id for the 'Char Var5' attribute. @@ -327,7 +327,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; /** * The feature id for the 'Long Var1' attribute. @@ -336,7 +336,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; /** * The feature id for the 'Long Var2' attribute. @@ -345,7 +345,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; /** * The feature id for the 'Long Var3' attribute. @@ -354,7 +354,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; /** * The feature id for the 'Long Var4' attribute. @@ -363,7 +363,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; /** * The feature id for the 'Long Var5' attribute. @@ -372,7 +372,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; /** * The feature id for the 'Float Var1' attribute. @@ -381,7 +381,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; /** * The feature id for the 'Float Var2' attribute. @@ -390,7 +390,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; /** * The feature id for the 'Float Var3' attribute. @@ -399,7 +399,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; /** * The feature id for the 'Float Var4' attribute. @@ -408,7 +408,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; /** * The feature id for the 'Float Var5' attribute. @@ -417,7 +417,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; /** * The feature id for the 'Double Var1' attribute. @@ -426,7 +426,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; /** * The feature id for the 'Double Var2' attribute. @@ -435,7 +435,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; /** * The feature id for the 'Double Var3' attribute. @@ -444,7 +444,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; /** * The feature id for the 'Double Var4' attribute. @@ -453,7 +453,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; /** * The feature id for the 'Double Var5' attribute. @@ -462,7 +462,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; /** * The feature id for the 'Boolean Var1' attribute. @@ -471,7 +471,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; /** * The feature id for the 'Boolean Var2' attribute. @@ -480,7 +480,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; /** * The feature id for the 'Boolean Var3' attribute. @@ -489,7 +489,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; /** * The feature id for the 'Boolean Var4' attribute. @@ -498,7 +498,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; /** * The feature id for the 'Boolean Var5' attribute. @@ -507,7 +507,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; /** * The feature id for the 'String Var1' attribute. @@ -516,7 +516,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; /** * The feature id for the 'String Var2' attribute. @@ -525,7 +525,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; /** * The feature id for the 'String Var3' attribute. @@ -534,7 +534,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; /** * The feature id for the 'String Var4' attribute. @@ -543,7 +543,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; /** * The feature id for the 'String Var5' attribute. @@ -552,25 +552,25 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; /** - * The number of structural features of the 'File' class. + * The number of structural features of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; /** - * The number of operations of the 'File' class. + * The number of operations of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** @@ -584,509 +584,509 @@ public interface ArtefactPackage extends EPackage { EClass getDiagram(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File File}'. + * Returns the meta object for class '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch Sketch}'. * * - * @return the meta object for class 'File'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch * @generated */ - EClass getFile(); + EClass getSketch(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar1 Byte Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. * * * @return the meta object for the attribute 'Byte Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar1(); + EAttribute getSketch_ByteVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar2 Byte Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. * * * @return the meta object for the attribute 'Byte Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar2(); + EAttribute getSketch_ByteVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar3 Byte Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. * * * @return the meta object for the attribute 'Byte Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar3(); + EAttribute getSketch_ByteVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar4 Byte Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. * * * @return the meta object for the attribute 'Byte Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar4(); + EAttribute getSketch_ByteVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar5 Byte Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. * * * @return the meta object for the attribute 'Byte Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar5(); + EAttribute getSketch_ByteVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar1 Short Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. * * * @return the meta object for the attribute 'Short Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar1(); + EAttribute getSketch_ShortVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar2 Short Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. * * * @return the meta object for the attribute 'Short Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar2(); + EAttribute getSketch_ShortVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar3 Short Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. * * * @return the meta object for the attribute 'Short Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar3(); + EAttribute getSketch_ShortVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar4 Short Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. * * * @return the meta object for the attribute 'Short Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar4(); + EAttribute getSketch_ShortVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar5 Short Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. * * * @return the meta object for the attribute 'Short Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar5(); + EAttribute getSketch_ShortVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar1 Int Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. * * * @return the meta object for the attribute 'Int Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar1(); + EAttribute getSketch_IntVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar2 Int Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. * * * @return the meta object for the attribute 'Int Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar2(); + EAttribute getSketch_IntVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar3 Int Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. * * * @return the meta object for the attribute 'Int Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar3(); + EAttribute getSketch_IntVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar4 Int Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. * * * @return the meta object for the attribute 'Int Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar4(); + EAttribute getSketch_IntVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar5 Int Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. * * * @return the meta object for the attribute 'Int Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar5(); + EAttribute getSketch_IntVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar1 Char Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. * * * @return the meta object for the attribute 'Char Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar1(); + EAttribute getSketch_CharVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar2 Char Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. * * * @return the meta object for the attribute 'Char Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar2(); + EAttribute getSketch_CharVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar3 Char Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. * * * @return the meta object for the attribute 'Char Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar3(); + EAttribute getSketch_CharVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar4 Char Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. * * * @return the meta object for the attribute 'Char Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar4(); + EAttribute getSketch_CharVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar5 Char Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. * * * @return the meta object for the attribute 'Char Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar5(); + EAttribute getSketch_CharVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar1 Long Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. * * * @return the meta object for the attribute 'Long Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar1(); + EAttribute getSketch_LongVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar2 Long Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. * * * @return the meta object for the attribute 'Long Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar2(); + EAttribute getSketch_LongVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar3 Long Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. * * * @return the meta object for the attribute 'Long Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar3(); + EAttribute getSketch_LongVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar4 Long Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. * * * @return the meta object for the attribute 'Long Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar4(); + EAttribute getSketch_LongVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar5 Long Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. * * * @return the meta object for the attribute 'Long Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar5(); + EAttribute getSketch_LongVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar1 Float Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. * * * @return the meta object for the attribute 'Float Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar1(); + EAttribute getSketch_FloatVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar2 Float Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. * * * @return the meta object for the attribute 'Float Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar2(); + EAttribute getSketch_FloatVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar3 Float Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. * * * @return the meta object for the attribute 'Float Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar3(); + EAttribute getSketch_FloatVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar4 Float Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. * * * @return the meta object for the attribute 'Float Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar4(); + EAttribute getSketch_FloatVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar5 Float Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. * * * @return the meta object for the attribute 'Float Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar5(); + EAttribute getSketch_FloatVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar1 Double Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. * * * @return the meta object for the attribute 'Double Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar1(); + EAttribute getSketch_DoubleVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar2 Double Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. * * * @return the meta object for the attribute 'Double Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar2(); + EAttribute getSketch_DoubleVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar3 Double Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. * * * @return the meta object for the attribute 'Double Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar3(); + EAttribute getSketch_DoubleVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar4 Double Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. * * * @return the meta object for the attribute 'Double Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar4(); + EAttribute getSketch_DoubleVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar5 Double Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. * * * @return the meta object for the attribute 'Double Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar5(); + EAttribute getSketch_DoubleVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getBooleanVar1 Boolean Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getBooleanVar1 Boolean Var1}'. * * * @return the meta object for the attribute 'Boolean Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#getBooleanVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getBooleanVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar1(); + EAttribute getSketch_BooleanVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar2 Boolean Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. * * * @return the meta object for the attribute 'Boolean Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar2(); + EAttribute getSketch_BooleanVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar3 Boolean Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. * * * @return the meta object for the attribute 'Boolean Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar3(); + EAttribute getSketch_BooleanVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar4 Boolean Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. * * * @return the meta object for the attribute 'Boolean Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar4(); + EAttribute getSketch_BooleanVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar5 Boolean Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. * * * @return the meta object for the attribute 'Boolean Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar5(); + EAttribute getSketch_BooleanVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar1 String Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar1 String Var1}'. * * * @return the meta object for the attribute 'String Var1'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar1() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar1(); + EAttribute getSketch_StringVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar2 String Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar2 String Var2}'. * * * @return the meta object for the attribute 'String Var2'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar2() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar2(); + EAttribute getSketch_StringVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar3 String Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar3 String Var3}'. * * * @return the meta object for the attribute 'String Var3'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar3() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar3(); + EAttribute getSketch_StringVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar4 String Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar4 String Var4}'. * * * @return the meta object for the attribute 'String Var4'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar4() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar4(); + EAttribute getSketch_StringVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar5 String Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar5 String Var5}'. * * * @return the meta object for the attribute 'String Var5'. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar5() - * @see #getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar5(); + EAttribute getSketch_StringVar5(); /** * Returns the factory that creates the instances of the model. @@ -1122,14 +1122,14 @@ interface Literals { EClass DIAGRAM = eINSTANCE.getDiagram(); /** - * The meta object literal for the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl File}' class. + * The meta object literal for the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - EClass FILE = eINSTANCE.getFile(); + EClass SKETCH = eINSTANCE.getSketch(); /** * The meta object literal for the 'Byte Var1' attribute feature. @@ -1137,7 +1137,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR1 = eINSTANCE.getFile_ByteVar1(); + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); /** * The meta object literal for the 'Byte Var2' attribute feature. @@ -1145,7 +1145,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR2 = eINSTANCE.getFile_ByteVar2(); + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); /** * The meta object literal for the 'Byte Var3' attribute feature. @@ -1153,7 +1153,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR3 = eINSTANCE.getFile_ByteVar3(); + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); /** * The meta object literal for the 'Byte Var4' attribute feature. @@ -1161,7 +1161,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR4 = eINSTANCE.getFile_ByteVar4(); + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); /** * The meta object literal for the 'Byte Var5' attribute feature. @@ -1169,7 +1169,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR5 = eINSTANCE.getFile_ByteVar5(); + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); /** * The meta object literal for the 'Short Var1' attribute feature. @@ -1177,7 +1177,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR1 = eINSTANCE.getFile_ShortVar1(); + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); /** * The meta object literal for the 'Short Var2' attribute feature. @@ -1185,7 +1185,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR2 = eINSTANCE.getFile_ShortVar2(); + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); /** * The meta object literal for the 'Short Var3' attribute feature. @@ -1193,7 +1193,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR3 = eINSTANCE.getFile_ShortVar3(); + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); /** * The meta object literal for the 'Short Var4' attribute feature. @@ -1201,7 +1201,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR4 = eINSTANCE.getFile_ShortVar4(); + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); /** * The meta object literal for the 'Short Var5' attribute feature. @@ -1209,7 +1209,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR5 = eINSTANCE.getFile_ShortVar5(); + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); /** * The meta object literal for the 'Int Var1' attribute feature. @@ -1217,7 +1217,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR1 = eINSTANCE.getFile_IntVar1(); + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); /** * The meta object literal for the 'Int Var2' attribute feature. @@ -1225,7 +1225,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR2 = eINSTANCE.getFile_IntVar2(); + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); /** * The meta object literal for the 'Int Var3' attribute feature. @@ -1233,7 +1233,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR3 = eINSTANCE.getFile_IntVar3(); + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); /** * The meta object literal for the 'Int Var4' attribute feature. @@ -1241,7 +1241,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR4 = eINSTANCE.getFile_IntVar4(); + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); /** * The meta object literal for the 'Int Var5' attribute feature. @@ -1249,7 +1249,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR5 = eINSTANCE.getFile_IntVar5(); + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); /** * The meta object literal for the 'Char Var1' attribute feature. @@ -1257,7 +1257,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR1 = eINSTANCE.getFile_CharVar1(); + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); /** * The meta object literal for the 'Char Var2' attribute feature. @@ -1265,7 +1265,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR2 = eINSTANCE.getFile_CharVar2(); + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); /** * The meta object literal for the 'Char Var3' attribute feature. @@ -1273,7 +1273,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR3 = eINSTANCE.getFile_CharVar3(); + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); /** * The meta object literal for the 'Char Var4' attribute feature. @@ -1281,7 +1281,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR4 = eINSTANCE.getFile_CharVar4(); + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); /** * The meta object literal for the 'Char Var5' attribute feature. @@ -1289,7 +1289,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR5 = eINSTANCE.getFile_CharVar5(); + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); /** * The meta object literal for the 'Long Var1' attribute feature. @@ -1297,7 +1297,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR1 = eINSTANCE.getFile_LongVar1(); + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); /** * The meta object literal for the 'Long Var2' attribute feature. @@ -1305,7 +1305,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR2 = eINSTANCE.getFile_LongVar2(); + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); /** * The meta object literal for the 'Long Var3' attribute feature. @@ -1313,7 +1313,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR3 = eINSTANCE.getFile_LongVar3(); + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); /** * The meta object literal for the 'Long Var4' attribute feature. @@ -1321,7 +1321,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR4 = eINSTANCE.getFile_LongVar4(); + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); /** * The meta object literal for the 'Long Var5' attribute feature. @@ -1329,7 +1329,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR5 = eINSTANCE.getFile_LongVar5(); + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); /** * The meta object literal for the 'Float Var1' attribute feature. @@ -1337,7 +1337,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR1 = eINSTANCE.getFile_FloatVar1(); + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); /** * The meta object literal for the 'Float Var2' attribute feature. @@ -1345,7 +1345,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR2 = eINSTANCE.getFile_FloatVar2(); + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); /** * The meta object literal for the 'Float Var3' attribute feature. @@ -1353,7 +1353,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR3 = eINSTANCE.getFile_FloatVar3(); + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); /** * The meta object literal for the 'Float Var4' attribute feature. @@ -1361,7 +1361,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR4 = eINSTANCE.getFile_FloatVar4(); + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); /** * The meta object literal for the 'Float Var5' attribute feature. @@ -1369,7 +1369,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR5 = eINSTANCE.getFile_FloatVar5(); + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); /** * The meta object literal for the 'Double Var1' attribute feature. @@ -1377,7 +1377,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR1 = eINSTANCE.getFile_DoubleVar1(); + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); /** * The meta object literal for the 'Double Var2' attribute feature. @@ -1385,7 +1385,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR2 = eINSTANCE.getFile_DoubleVar2(); + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); /** * The meta object literal for the 'Double Var3' attribute feature. @@ -1393,7 +1393,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR3 = eINSTANCE.getFile_DoubleVar3(); + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); /** * The meta object literal for the 'Double Var4' attribute feature. @@ -1401,7 +1401,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR4 = eINSTANCE.getFile_DoubleVar4(); + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); /** * The meta object literal for the 'Double Var5' attribute feature. @@ -1409,7 +1409,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR5 = eINSTANCE.getFile_DoubleVar5(); + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); /** * The meta object literal for the 'Boolean Var1' attribute feature. @@ -1417,7 +1417,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR1 = eINSTANCE.getFile_BooleanVar1(); + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); /** * The meta object literal for the 'Boolean Var2' attribute feature. @@ -1425,7 +1425,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR2 = eINSTANCE.getFile_BooleanVar2(); + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); /** * The meta object literal for the 'Boolean Var3' attribute feature. @@ -1433,7 +1433,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR3 = eINSTANCE.getFile_BooleanVar3(); + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); /** * The meta object literal for the 'Boolean Var4' attribute feature. @@ -1441,7 +1441,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR4 = eINSTANCE.getFile_BooleanVar4(); + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); /** * The meta object literal for the 'Boolean Var5' attribute feature. @@ -1449,7 +1449,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR5 = eINSTANCE.getFile_BooleanVar5(); + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); /** * The meta object literal for the 'String Var1' attribute feature. @@ -1457,7 +1457,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR1 = eINSTANCE.getFile_StringVar1(); + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); /** * The meta object literal for the 'String Var2' attribute feature. @@ -1465,7 +1465,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR2 = eINSTANCE.getFile_StringVar2(); + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); /** * The meta object literal for the 'String Var3' attribute feature. @@ -1473,7 +1473,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR3 = eINSTANCE.getFile_StringVar3(); + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); /** * The meta object literal for the 'String Var4' attribute feature. @@ -1481,7 +1481,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR4 = eINSTANCE.getFile_StringVar4(); + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); /** * The meta object literal for the 'String Var5' attribute feature. @@ -1489,7 +1489,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR5 = eINSTANCE.getFile_StringVar5(); + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/File.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/Sketch.java similarity index 82% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/File.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/Sketch.java index 2e92cfd4b..42f732322 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/File.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/Sketch.java @@ -7,65 +7,65 @@ /** * - * A representation of the model object 'File'. + * A representation of the model object 'Sketch'. * * *

* The following features are supported: *

*
    - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar5 String Var5}
  • *
* - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch() * @model * @generated */ -public interface File extends IModifiable, IContainer { +public interface Sketch extends IModifiable, IContainer { /** * Returns the value of the 'Byte Var1' attribute. * @@ -76,14 +76,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var1' attribute. * @see #setByteVar1(short) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ByteVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() * @model * @generated */ short getByteVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar1 Byte Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. * * * @param value the new value of the 'Byte Var1' attribute. @@ -102,14 +102,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var2' attribute. * @see #setByteVar2(int) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ByteVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() * @model * @generated */ int getByteVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar2 Byte Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. * * * @param value the new value of the 'Byte Var2' attribute. @@ -128,14 +128,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var3' attribute. * @see #setByteVar3(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ByteVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() * @model * @generated */ long getByteVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar3 Byte Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. * * * @param value the new value of the 'Byte Var3' attribute. @@ -154,14 +154,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var4' attribute. * @see #setByteVar4(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ByteVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() * @model * @generated */ float getByteVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar4 Byte Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. * * * @param value the new value of the 'Byte Var4' attribute. @@ -180,14 +180,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var5' attribute. * @see #setByteVar5(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ByteVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() * @model * @generated */ double getByteVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getByteVar5 Byte Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. * * * @param value the new value of the 'Byte Var5' attribute. @@ -206,14 +206,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var1' attribute. * @see #setShortVar1(int) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ShortVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() * @model * @generated */ int getShortVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar1 Short Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. * * * @param value the new value of the 'Short Var1' attribute. @@ -232,14 +232,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var2' attribute. * @see #setShortVar2(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ShortVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() * @model * @generated */ long getShortVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar2 Short Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. * * * @param value the new value of the 'Short Var2' attribute. @@ -258,14 +258,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var3' attribute. * @see #setShortVar3(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ShortVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() * @model * @generated */ float getShortVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar3 Short Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. * * * @param value the new value of the 'Short Var3' attribute. @@ -284,14 +284,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var4' attribute. * @see #setShortVar4(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ShortVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() * @model * @generated */ double getShortVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar4 Short Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. * * * @param value the new value of the 'Short Var4' attribute. @@ -310,14 +310,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var5' attribute. * @see #setShortVar5(short) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_ShortVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() * @model * @generated */ short getShortVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getShortVar5 Short Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. * * * @param value the new value of the 'Short Var5' attribute. @@ -336,14 +336,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var1' attribute. * @see #setIntVar1(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_IntVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() * @model * @generated */ long getIntVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar1 Int Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. * * * @param value the new value of the 'Int Var1' attribute. @@ -362,14 +362,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var2' attribute. * @see #setIntVar2(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_IntVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() * @model * @generated */ float getIntVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar2 Int Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. * * * @param value the new value of the 'Int Var2' attribute. @@ -388,14 +388,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var3' attribute. * @see #setIntVar3(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_IntVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() * @model * @generated */ double getIntVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar3 Int Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. * * * @param value the new value of the 'Int Var3' attribute. @@ -414,14 +414,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var4' attribute. * @see #setIntVar4(int) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_IntVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() * @model * @generated */ int getIntVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar4 Int Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. * * * @param value the new value of the 'Int Var4' attribute. @@ -440,14 +440,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var5' attribute. * @see #setIntVar5(int) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_IntVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() * @model * @generated */ int getIntVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getIntVar5 Int Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. * * * @param value the new value of the 'Int Var5' attribute. @@ -466,14 +466,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var1' attribute. * @see #setCharVar1(int) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_CharVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() * @model * @generated */ int getCharVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar1 Char Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. * * * @param value the new value of the 'Char Var1' attribute. @@ -492,14 +492,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var2' attribute. * @see #setCharVar2(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_CharVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() * @model * @generated */ long getCharVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar2 Char Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. * * * @param value the new value of the 'Char Var2' attribute. @@ -518,14 +518,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var3' attribute. * @see #setCharVar3(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_CharVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() * @model * @generated */ float getCharVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar3 Char Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. * * * @param value the new value of the 'Char Var3' attribute. @@ -544,14 +544,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var4' attribute. * @see #setCharVar4(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_CharVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() * @model * @generated */ double getCharVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar4 Char Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. * * * @param value the new value of the 'Char Var4' attribute. @@ -570,14 +570,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var5' attribute. * @see #setCharVar5(String) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_CharVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() * @model * @generated */ String getCharVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getCharVar5 Char Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. * * * @param value the new value of the 'Char Var5' attribute. @@ -596,14 +596,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var1' attribute. * @see #setLongVar1(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_LongVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() * @model * @generated */ float getLongVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar1 Long Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. * * * @param value the new value of the 'Long Var1' attribute. @@ -622,14 +622,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var2' attribute. * @see #setLongVar2(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_LongVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() * @model * @generated */ double getLongVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar2 Long Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. * * * @param value the new value of the 'Long Var2' attribute. @@ -648,14 +648,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var3' attribute. * @see #setLongVar3(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_LongVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() * @model * @generated */ long getLongVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar3 Long Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. * * * @param value the new value of the 'Long Var3' attribute. @@ -674,14 +674,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var4' attribute. * @see #setLongVar4(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_LongVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() * @model * @generated */ long getLongVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar4 Long Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. * * * @param value the new value of the 'Long Var4' attribute. @@ -700,14 +700,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var5' attribute. * @see #setLongVar5(long) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_LongVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() * @model * @generated */ long getLongVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getLongVar5 Long Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. * * * @param value the new value of the 'Long Var5' attribute. @@ -726,14 +726,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var1' attribute. * @see #setFloatVar1(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_FloatVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() * @model * @generated */ double getFloatVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar1 Float Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. * * * @param value the new value of the 'Float Var1' attribute. @@ -752,14 +752,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var2' attribute. * @see #setFloatVar2(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_FloatVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() * @model * @generated */ float getFloatVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar2 Float Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. * * * @param value the new value of the 'Float Var2' attribute. @@ -778,14 +778,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var3' attribute. * @see #setFloatVar3(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_FloatVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() * @model * @generated */ float getFloatVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar3 Float Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. * * * @param value the new value of the 'Float Var3' attribute. @@ -804,14 +804,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var4' attribute. * @see #setFloatVar4(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_FloatVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() * @model * @generated */ float getFloatVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar4 Float Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. * * * @param value the new value of the 'Float Var4' attribute. @@ -830,14 +830,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var5' attribute. * @see #setFloatVar5(float) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_FloatVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() * @model * @generated */ float getFloatVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getFloatVar5 Float Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. * * * @param value the new value of the 'Float Var5' attribute. @@ -856,14 +856,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var1' attribute. * @see #setDoubleVar1(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_DoubleVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() * @model * @generated */ double getDoubleVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar1 Double Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. * * * @param value the new value of the 'Double Var1' attribute. @@ -882,14 +882,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var2' attribute. * @see #setDoubleVar2(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_DoubleVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() * @model * @generated */ double getDoubleVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar2 Double Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. * * * @param value the new value of the 'Double Var2' attribute. @@ -908,14 +908,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var3' attribute. * @see #setDoubleVar3(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_DoubleVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() * @model * @generated */ double getDoubleVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar3 Double Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. * * * @param value the new value of the 'Double Var3' attribute. @@ -934,14 +934,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var4' attribute. * @see #setDoubleVar4(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_DoubleVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() * @model * @generated */ double getDoubleVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar4 Double Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. * * * @param value the new value of the 'Double Var4' attribute. @@ -960,14 +960,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var5' attribute. * @see #setDoubleVar5(double) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_DoubleVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() * @model * @generated */ double getDoubleVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getDoubleVar5 Double Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. * * * @param value the new value of the 'Double Var5' attribute. @@ -986,14 +986,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var1' attribute. * @see #setBooleanVar1(String) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_BooleanVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() * @model * @generated */ String getBooleanVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#getBooleanVar1 Boolean Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#getBooleanVar1 Boolean Var1}' attribute. * * * @param value the new value of the 'Boolean Var1' attribute. @@ -1012,14 +1012,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var2' attribute. * @see #setBooleanVar2(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_BooleanVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() * @model * @generated */ boolean isBooleanVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar2 Boolean Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. * * * @param value the new value of the 'Boolean Var2' attribute. @@ -1038,14 +1038,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var3' attribute. * @see #setBooleanVar3(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_BooleanVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() * @model * @generated */ boolean isBooleanVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar3 Boolean Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. * * * @param value the new value of the 'Boolean Var3' attribute. @@ -1064,14 +1064,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var4' attribute. * @see #setBooleanVar4(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_BooleanVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() * @model * @generated */ boolean isBooleanVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar4 Boolean Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. * * * @param value the new value of the 'Boolean Var4' attribute. @@ -1090,14 +1090,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var5' attribute. * @see #setBooleanVar5(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_BooleanVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() * @model * @generated */ boolean isBooleanVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isBooleanVar5 Boolean Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. * * * @param value the new value of the 'Boolean Var5' attribute. @@ -1116,14 +1116,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var1' attribute. * @see #setStringVar1(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_StringVar1() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() * @model * @generated */ boolean isStringVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar1 String Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar1 String Var1}' attribute. * * * @param value the new value of the 'String Var1' attribute. @@ -1142,14 +1142,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var2' attribute. * @see #setStringVar2(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_StringVar2() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() * @model * @generated */ boolean isStringVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar2 String Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar2 String Var2}' attribute. * * * @param value the new value of the 'String Var2' attribute. @@ -1168,14 +1168,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var3' attribute. * @see #setStringVar3(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_StringVar3() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() * @model * @generated */ boolean isStringVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar3 String Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar3 String Var3}' attribute. * * * @param value the new value of the 'String Var3' attribute. @@ -1194,14 +1194,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var4' attribute. * @see #setStringVar4(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_StringVar4() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() * @model * @generated */ boolean isStringVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar4 String Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar4 String Var4}' attribute. * * * @param value the new value of the 'String Var4' attribute. @@ -1220,14 +1220,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var5' attribute. * @see #setStringVar5(boolean) - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getFile_StringVar5() + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() * @model * @generated */ boolean isStringVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File#isStringVar5 String Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch#isStringVar5 String Var5}' attribute. * * * @param value the new value of the 'String Var5' attribute. @@ -1236,4 +1236,4 @@ public interface File extends IModifiable, IContainer { */ void setStringVar5(boolean value); -} // File +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactFactoryImpl.java index b6905d083..3c6483ff3 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactFactoryImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -57,7 +57,7 @@ public ArtefactFactoryImpl() { public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ArtefactPackage.DIAGRAM: return createDiagram(); - case ArtefactPackage.FILE: return createFile(); + case ArtefactPackage.SKETCH: return createSketch(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } @@ -78,9 +78,9 @@ public Diagram createDiagram() { * * @generated */ - public File createFile() { - FileImpl file = new FileImpl(); - return file; + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactPackageImpl.java index 9159ece90..928d0bf84 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactPackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -5,7 +5,7 @@ import com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactFactory; import com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage; import com.specmate.migration.test.changedtypes.testmodel.artefact.Diagram; -import com.specmate.migration.test.changedtypes.testmodel.artefact.File; +import com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch; import com.specmate.migration.test.changedtypes.testmodel.base.BasePackage; @@ -36,7 +36,7 @@ public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage * * @generated */ - private EClass fileEClass = null; + private EClass sketchEClass = null; /** * Creates an instance of the model Package, registered with @@ -118,8 +118,8 @@ public EClass getDiagram() { * * @generated */ - public EClass getFile() { - return fileEClass; + public EClass getSketch() { + return sketchEClass; } /** @@ -127,8 +127,8 @@ public EClass getFile() { * * @generated */ - public EAttribute getFile_ByteVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(0); + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); } /** @@ -136,8 +136,8 @@ public EAttribute getFile_ByteVar1() { * * @generated */ - public EAttribute getFile_ByteVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(1); + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); } /** @@ -145,8 +145,8 @@ public EAttribute getFile_ByteVar2() { * * @generated */ - public EAttribute getFile_ByteVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(2); + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); } /** @@ -154,8 +154,8 @@ public EAttribute getFile_ByteVar3() { * * @generated */ - public EAttribute getFile_ByteVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(3); + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); } /** @@ -163,8 +163,8 @@ public EAttribute getFile_ByteVar4() { * * @generated */ - public EAttribute getFile_ByteVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(4); + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); } /** @@ -172,8 +172,8 @@ public EAttribute getFile_ByteVar5() { * * @generated */ - public EAttribute getFile_ShortVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(5); + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); } /** @@ -181,8 +181,8 @@ public EAttribute getFile_ShortVar1() { * * @generated */ - public EAttribute getFile_ShortVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(6); + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); } /** @@ -190,8 +190,8 @@ public EAttribute getFile_ShortVar2() { * * @generated */ - public EAttribute getFile_ShortVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(7); + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); } /** @@ -199,8 +199,8 @@ public EAttribute getFile_ShortVar3() { * * @generated */ - public EAttribute getFile_ShortVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(8); + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); } /** @@ -208,8 +208,8 @@ public EAttribute getFile_ShortVar4() { * * @generated */ - public EAttribute getFile_ShortVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(9); + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); } /** @@ -217,8 +217,8 @@ public EAttribute getFile_ShortVar5() { * * @generated */ - public EAttribute getFile_IntVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(10); + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); } /** @@ -226,8 +226,8 @@ public EAttribute getFile_IntVar1() { * * @generated */ - public EAttribute getFile_IntVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(11); + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); } /** @@ -235,8 +235,8 @@ public EAttribute getFile_IntVar2() { * * @generated */ - public EAttribute getFile_IntVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(12); + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); } /** @@ -244,8 +244,8 @@ public EAttribute getFile_IntVar3() { * * @generated */ - public EAttribute getFile_IntVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(13); + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); } /** @@ -253,8 +253,8 @@ public EAttribute getFile_IntVar4() { * * @generated */ - public EAttribute getFile_IntVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(14); + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); } /** @@ -262,8 +262,8 @@ public EAttribute getFile_IntVar5() { * * @generated */ - public EAttribute getFile_CharVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(15); + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); } /** @@ -271,8 +271,8 @@ public EAttribute getFile_CharVar1() { * * @generated */ - public EAttribute getFile_CharVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(16); + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); } /** @@ -280,8 +280,8 @@ public EAttribute getFile_CharVar2() { * * @generated */ - public EAttribute getFile_CharVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(17); + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); } /** @@ -289,8 +289,8 @@ public EAttribute getFile_CharVar3() { * * @generated */ - public EAttribute getFile_CharVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(18); + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); } /** @@ -298,8 +298,8 @@ public EAttribute getFile_CharVar4() { * * @generated */ - public EAttribute getFile_CharVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(19); + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); } /** @@ -307,8 +307,8 @@ public EAttribute getFile_CharVar5() { * * @generated */ - public EAttribute getFile_LongVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(20); + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); } /** @@ -316,8 +316,8 @@ public EAttribute getFile_LongVar1() { * * @generated */ - public EAttribute getFile_LongVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(21); + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); } /** @@ -325,8 +325,8 @@ public EAttribute getFile_LongVar2() { * * @generated */ - public EAttribute getFile_LongVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(22); + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); } /** @@ -334,8 +334,8 @@ public EAttribute getFile_LongVar3() { * * @generated */ - public EAttribute getFile_LongVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(23); + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); } /** @@ -343,8 +343,8 @@ public EAttribute getFile_LongVar4() { * * @generated */ - public EAttribute getFile_LongVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(24); + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); } /** @@ -352,8 +352,8 @@ public EAttribute getFile_LongVar5() { * * @generated */ - public EAttribute getFile_FloatVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(25); + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); } /** @@ -361,8 +361,8 @@ public EAttribute getFile_FloatVar1() { * * @generated */ - public EAttribute getFile_FloatVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(26); + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); } /** @@ -370,8 +370,8 @@ public EAttribute getFile_FloatVar2() { * * @generated */ - public EAttribute getFile_FloatVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(27); + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); } /** @@ -379,8 +379,8 @@ public EAttribute getFile_FloatVar3() { * * @generated */ - public EAttribute getFile_FloatVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(28); + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); } /** @@ -388,8 +388,8 @@ public EAttribute getFile_FloatVar4() { * * @generated */ - public EAttribute getFile_FloatVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(29); + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); } /** @@ -397,8 +397,8 @@ public EAttribute getFile_FloatVar5() { * * @generated */ - public EAttribute getFile_DoubleVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(30); + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); } /** @@ -406,8 +406,8 @@ public EAttribute getFile_DoubleVar1() { * * @generated */ - public EAttribute getFile_DoubleVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(31); + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); } /** @@ -415,8 +415,8 @@ public EAttribute getFile_DoubleVar2() { * * @generated */ - public EAttribute getFile_DoubleVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(32); + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); } /** @@ -424,8 +424,8 @@ public EAttribute getFile_DoubleVar3() { * * @generated */ - public EAttribute getFile_DoubleVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(33); + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); } /** @@ -433,8 +433,8 @@ public EAttribute getFile_DoubleVar4() { * * @generated */ - public EAttribute getFile_DoubleVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(34); + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); } /** @@ -442,8 +442,8 @@ public EAttribute getFile_DoubleVar5() { * * @generated */ - public EAttribute getFile_BooleanVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(35); + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); } /** @@ -451,8 +451,8 @@ public EAttribute getFile_BooleanVar1() { * * @generated */ - public EAttribute getFile_BooleanVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(36); + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); } /** @@ -460,8 +460,8 @@ public EAttribute getFile_BooleanVar2() { * * @generated */ - public EAttribute getFile_BooleanVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(37); + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); } /** @@ -469,8 +469,8 @@ public EAttribute getFile_BooleanVar3() { * * @generated */ - public EAttribute getFile_BooleanVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(38); + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); } /** @@ -478,8 +478,8 @@ public EAttribute getFile_BooleanVar4() { * * @generated */ - public EAttribute getFile_BooleanVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(39); + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); } /** @@ -487,8 +487,8 @@ public EAttribute getFile_BooleanVar5() { * * @generated */ - public EAttribute getFile_StringVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(40); + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); } /** @@ -496,8 +496,8 @@ public EAttribute getFile_StringVar1() { * * @generated */ - public EAttribute getFile_StringVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(41); + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); } /** @@ -505,8 +505,8 @@ public EAttribute getFile_StringVar2() { * * @generated */ - public EAttribute getFile_StringVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(42); + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); } /** @@ -514,8 +514,8 @@ public EAttribute getFile_StringVar3() { * * @generated */ - public EAttribute getFile_StringVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(43); + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); } /** @@ -523,8 +523,8 @@ public EAttribute getFile_StringVar4() { * * @generated */ - public EAttribute getFile_StringVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(44); + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); } /** @@ -557,52 +557,52 @@ public void createPackageContents() { // Create classes and their features diagramEClass = createEClass(DIAGRAM); - fileEClass = createEClass(FILE); - createEAttribute(fileEClass, FILE__BYTE_VAR1); - createEAttribute(fileEClass, FILE__BYTE_VAR2); - createEAttribute(fileEClass, FILE__BYTE_VAR3); - createEAttribute(fileEClass, FILE__BYTE_VAR4); - createEAttribute(fileEClass, FILE__BYTE_VAR5); - createEAttribute(fileEClass, FILE__SHORT_VAR1); - createEAttribute(fileEClass, FILE__SHORT_VAR2); - createEAttribute(fileEClass, FILE__SHORT_VAR3); - createEAttribute(fileEClass, FILE__SHORT_VAR4); - createEAttribute(fileEClass, FILE__SHORT_VAR5); - createEAttribute(fileEClass, FILE__INT_VAR1); - createEAttribute(fileEClass, FILE__INT_VAR2); - createEAttribute(fileEClass, FILE__INT_VAR3); - createEAttribute(fileEClass, FILE__INT_VAR4); - createEAttribute(fileEClass, FILE__INT_VAR5); - createEAttribute(fileEClass, FILE__CHAR_VAR1); - createEAttribute(fileEClass, FILE__CHAR_VAR2); - createEAttribute(fileEClass, FILE__CHAR_VAR3); - createEAttribute(fileEClass, FILE__CHAR_VAR4); - createEAttribute(fileEClass, FILE__CHAR_VAR5); - createEAttribute(fileEClass, FILE__LONG_VAR1); - createEAttribute(fileEClass, FILE__LONG_VAR2); - createEAttribute(fileEClass, FILE__LONG_VAR3); - createEAttribute(fileEClass, FILE__LONG_VAR4); - createEAttribute(fileEClass, FILE__LONG_VAR5); - createEAttribute(fileEClass, FILE__FLOAT_VAR1); - createEAttribute(fileEClass, FILE__FLOAT_VAR2); - createEAttribute(fileEClass, FILE__FLOAT_VAR3); - createEAttribute(fileEClass, FILE__FLOAT_VAR4); - createEAttribute(fileEClass, FILE__FLOAT_VAR5); - createEAttribute(fileEClass, FILE__DOUBLE_VAR1); - createEAttribute(fileEClass, FILE__DOUBLE_VAR2); - createEAttribute(fileEClass, FILE__DOUBLE_VAR3); - createEAttribute(fileEClass, FILE__DOUBLE_VAR4); - createEAttribute(fileEClass, FILE__DOUBLE_VAR5); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR1); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR2); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR3); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR4); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR5); - createEAttribute(fileEClass, FILE__STRING_VAR1); - createEAttribute(fileEClass, FILE__STRING_VAR2); - createEAttribute(fileEClass, FILE__STRING_VAR3); - createEAttribute(fileEClass, FILE__STRING_VAR4); - createEAttribute(fileEClass, FILE__STRING_VAR5); + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); } /** @@ -638,58 +638,58 @@ public void initializePackageContents() { // Add supertypes to classes diagramEClass.getESuperTypes().add(theBasePackage.getIModifiable()); diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); - fileEClass.getESuperTypes().add(theBasePackage.getIModifiable()); - fileEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); // Initialize classes, features, and operations; add parameters initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEClass(fileEClass, File.class, "File", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEAttribute(getFile_ByteVar1(), ecorePackage.getEShort(), "byteVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar2(), ecorePackage.getEInt(), "byteVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar3(), ecorePackage.getELong(), "byteVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar4(), ecorePackage.getEFloat(), "byteVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar5(), ecorePackage.getEDouble(), "byteVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar1(), ecorePackage.getEInt(), "shortVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar2(), ecorePackage.getELong(), "shortVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar3(), ecorePackage.getEFloat(), "shortVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar4(), ecorePackage.getEDouble(), "shortVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar1(), ecorePackage.getELong(), "intVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar2(), ecorePackage.getEFloat(), "intVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar3(), ecorePackage.getEDouble(), "intVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar1(), ecorePackage.getEInt(), "charVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar2(), ecorePackage.getELong(), "charVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar3(), ecorePackage.getEFloat(), "charVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar4(), ecorePackage.getEDouble(), "charVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar5(), ecorePackage.getEString(), "charVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar1(), ecorePackage.getEFloat(), "longVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar2(), ecorePackage.getEDouble(), "longVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar1(), ecorePackage.getEDouble(), "floatVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar1(), ecorePackage.getEString(), "booleanVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar1(), ecorePackage.getEBoolean(), "stringVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar2(), ecorePackage.getEBoolean(), "stringVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar3(), ecorePackage.getEBoolean(), "stringVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar4(), ecorePackage.getEBoolean(), "stringVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar5(), ecorePackage.getEBoolean(), "stringVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEShort(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEInt(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getELong(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEFloat(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEDouble(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEInt(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getELong(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEFloat(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEDouble(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getELong(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEFloat(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEDouble(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEInt(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getELong(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEFloat(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEDouble(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEString(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getEFloat(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getEDouble(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEDouble(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEString(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEBoolean(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEBoolean(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEBoolean(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEBoolean(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEBoolean(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); // Create resource createResource(eNS_URI); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/FileImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/SketchImpl.java similarity index 63% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/FileImpl.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/SketchImpl.java index 1c1cb0191..bbf5e7c79 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/FileImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/impl/SketchImpl.java @@ -3,7 +3,7 @@ package com.specmate.migration.test.changedtypes.testmodel.artefact.impl; import com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage; -import com.specmate.migration.test.changedtypes.testmodel.artefact.File; +import com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch; import com.specmate.migration.test.changedtypes.testmodel.base.BasePackage; import com.specmate.migration.test.changedtypes.testmodel.base.IContainer; @@ -25,65 +25,65 @@ /** * - * An implementation of the model object 'File'. + * An implementation of the model object 'Sketch'. * *

* The following features are implemented: *

*
    - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isTested Tested}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getId Id}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getContents Contents}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#getBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.FileImpl#isStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#getBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.changedtypes.testmodel.artefact.impl.SketchImpl#isStringVar5 String Var5}
  • *
* * @generated */ -public class FileImpl extends MinimalEObjectImpl.Container implements File { +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { /** * The default value of the '{@link #isTested() Tested}' attribute. * @@ -559,7 +559,7 @@ public class FileImpl extends MinimalEObjectImpl.Container implements File { * * @generated */ - protected FileImpl() { + protected SketchImpl() { super(); } @@ -570,7 +570,7 @@ protected FileImpl() { */ @Override protected EClass eStaticClass() { - return ArtefactPackage.Literals.FILE; + return ArtefactPackage.Literals.SKETCH; } /** @@ -589,7 +589,7 @@ protected int eStaticFeatureCount() { * @generated */ public boolean isTested() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); } /** @@ -598,7 +598,7 @@ public boolean isTested() { * @generated */ public void setTested(boolean newTested) { - eDynamicSet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + eDynamicSet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); } /** @@ -607,7 +607,7 @@ public void setTested(boolean newTested) { * @generated */ public String getId() { - return (String)eDynamicGet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); } /** @@ -616,7 +616,7 @@ public String getId() { * @generated */ public void setId(String newId) { - eDynamicSet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, newId); + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); } /** @@ -626,7 +626,7 @@ public void setId(String newId) { */ @SuppressWarnings("unchecked") public EList getContents() { - return (EList)eDynamicGet(ArtefactPackage.FILE__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); } /** @@ -635,7 +635,7 @@ public EList getContents() { * @generated */ public short getByteVar1() { - return (Short)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); } /** @@ -644,7 +644,7 @@ public short getByteVar1() { * @generated */ public void setByteVar1(short newByteVar1) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, newByteVar1); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); } /** @@ -653,7 +653,7 @@ public void setByteVar1(short newByteVar1) { * @generated */ public int getByteVar2() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); } /** @@ -662,7 +662,7 @@ public int getByteVar2() { * @generated */ public void setByteVar2(int newByteVar2) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, newByteVar2); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); } /** @@ -671,7 +671,7 @@ public void setByteVar2(int newByteVar2) { * @generated */ public long getByteVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); } /** @@ -680,7 +680,7 @@ public long getByteVar3() { * @generated */ public void setByteVar3(long newByteVar3) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, newByteVar3); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); } /** @@ -689,7 +689,7 @@ public void setByteVar3(long newByteVar3) { * @generated */ public float getByteVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); } /** @@ -698,7 +698,7 @@ public float getByteVar4() { * @generated */ public void setByteVar4(float newByteVar4) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, newByteVar4); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); } /** @@ -707,7 +707,7 @@ public void setByteVar4(float newByteVar4) { * @generated */ public double getByteVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); } /** @@ -716,7 +716,7 @@ public double getByteVar5() { * @generated */ public void setByteVar5(double newByteVar5) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, newByteVar5); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); } /** @@ -725,7 +725,7 @@ public void setByteVar5(double newByteVar5) { * @generated */ public int getShortVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); } /** @@ -734,7 +734,7 @@ public int getShortVar1() { * @generated */ public void setShortVar1(int newShortVar1) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, newShortVar1); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); } /** @@ -743,7 +743,7 @@ public void setShortVar1(int newShortVar1) { * @generated */ public long getShortVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); } /** @@ -752,7 +752,7 @@ public long getShortVar2() { * @generated */ public void setShortVar2(long newShortVar2) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, newShortVar2); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); } /** @@ -761,7 +761,7 @@ public void setShortVar2(long newShortVar2) { * @generated */ public float getShortVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); } /** @@ -770,7 +770,7 @@ public float getShortVar3() { * @generated */ public void setShortVar3(float newShortVar3) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, newShortVar3); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); } /** @@ -779,7 +779,7 @@ public void setShortVar3(float newShortVar3) { * @generated */ public double getShortVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); } /** @@ -788,7 +788,7 @@ public double getShortVar4() { * @generated */ public void setShortVar4(double newShortVar4) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, newShortVar4); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); } /** @@ -797,7 +797,7 @@ public void setShortVar4(double newShortVar4) { * @generated */ public short getShortVar5() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); } /** @@ -806,7 +806,7 @@ public short getShortVar5() { * @generated */ public void setShortVar5(short newShortVar5) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, newShortVar5); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); } /** @@ -815,7 +815,7 @@ public void setShortVar5(short newShortVar5) { * @generated */ public long getIntVar1() { - return (Long)eDynamicGet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); } /** @@ -824,7 +824,7 @@ public long getIntVar1() { * @generated */ public void setIntVar1(long newIntVar1) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, newIntVar1); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); } /** @@ -833,7 +833,7 @@ public void setIntVar1(long newIntVar1) { * @generated */ public float getIntVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); } /** @@ -842,7 +842,7 @@ public float getIntVar2() { * @generated */ public void setIntVar2(float newIntVar2) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, newIntVar2); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); } /** @@ -851,7 +851,7 @@ public void setIntVar2(float newIntVar2) { * @generated */ public double getIntVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); } /** @@ -860,7 +860,7 @@ public double getIntVar3() { * @generated */ public void setIntVar3(double newIntVar3) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, newIntVar3); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); } /** @@ -869,7 +869,7 @@ public void setIntVar3(double newIntVar3) { * @generated */ public int getIntVar4() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); } /** @@ -878,7 +878,7 @@ public int getIntVar4() { * @generated */ public void setIntVar4(int newIntVar4) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, newIntVar4); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); } /** @@ -887,7 +887,7 @@ public void setIntVar4(int newIntVar4) { * @generated */ public int getIntVar5() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); } /** @@ -896,7 +896,7 @@ public int getIntVar5() { * @generated */ public void setIntVar5(int newIntVar5) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, newIntVar5); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); } /** @@ -905,7 +905,7 @@ public void setIntVar5(int newIntVar5) { * @generated */ public int getCharVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); } /** @@ -914,7 +914,7 @@ public int getCharVar1() { * @generated */ public void setCharVar1(int newCharVar1) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, newCharVar1); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); } /** @@ -923,7 +923,7 @@ public void setCharVar1(int newCharVar1) { * @generated */ public long getCharVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); } /** @@ -932,7 +932,7 @@ public long getCharVar2() { * @generated */ public void setCharVar2(long newCharVar2) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, newCharVar2); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); } /** @@ -941,7 +941,7 @@ public void setCharVar2(long newCharVar2) { * @generated */ public float getCharVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); } /** @@ -950,7 +950,7 @@ public float getCharVar3() { * @generated */ public void setCharVar3(float newCharVar3) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, newCharVar3); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); } /** @@ -959,7 +959,7 @@ public void setCharVar3(float newCharVar3) { * @generated */ public double getCharVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); } /** @@ -968,7 +968,7 @@ public double getCharVar4() { * @generated */ public void setCharVar4(double newCharVar4) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, newCharVar4); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); } /** @@ -977,7 +977,7 @@ public void setCharVar4(double newCharVar4) { * @generated */ public String getCharVar5() { - return (String)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); } /** @@ -986,7 +986,7 @@ public String getCharVar5() { * @generated */ public void setCharVar5(String newCharVar5) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, newCharVar5); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); } /** @@ -995,7 +995,7 @@ public void setCharVar5(String newCharVar5) { * @generated */ public float getLongVar1() { - return (Float)eDynamicGet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); } /** @@ -1004,7 +1004,7 @@ public float getLongVar1() { * @generated */ public void setLongVar1(float newLongVar1) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, newLongVar1); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); } /** @@ -1013,7 +1013,7 @@ public void setLongVar1(float newLongVar1) { * @generated */ public double getLongVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); } /** @@ -1022,7 +1022,7 @@ public double getLongVar2() { * @generated */ public void setLongVar2(double newLongVar2) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, newLongVar2); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); } /** @@ -1031,7 +1031,7 @@ public void setLongVar2(double newLongVar2) { * @generated */ public long getLongVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); } /** @@ -1040,7 +1040,7 @@ public long getLongVar3() { * @generated */ public void setLongVar3(long newLongVar3) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, newLongVar3); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); } /** @@ -1049,7 +1049,7 @@ public void setLongVar3(long newLongVar3) { * @generated */ public long getLongVar4() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); } /** @@ -1058,7 +1058,7 @@ public long getLongVar4() { * @generated */ public void setLongVar4(long newLongVar4) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, newLongVar4); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); } /** @@ -1067,7 +1067,7 @@ public void setLongVar4(long newLongVar4) { * @generated */ public long getLongVar5() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); } /** @@ -1076,7 +1076,7 @@ public long getLongVar5() { * @generated */ public void setLongVar5(long newLongVar5) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, newLongVar5); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); } /** @@ -1085,7 +1085,7 @@ public void setLongVar5(long newLongVar5) { * @generated */ public double getFloatVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); } /** @@ -1094,7 +1094,7 @@ public double getFloatVar1() { * @generated */ public void setFloatVar1(double newFloatVar1) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, newFloatVar1); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); } /** @@ -1103,7 +1103,7 @@ public void setFloatVar1(double newFloatVar1) { * @generated */ public float getFloatVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); } /** @@ -1112,7 +1112,7 @@ public float getFloatVar2() { * @generated */ public void setFloatVar2(float newFloatVar2) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, newFloatVar2); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); } /** @@ -1121,7 +1121,7 @@ public void setFloatVar2(float newFloatVar2) { * @generated */ public float getFloatVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); } /** @@ -1130,7 +1130,7 @@ public float getFloatVar3() { * @generated */ public void setFloatVar3(float newFloatVar3) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, newFloatVar3); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); } /** @@ -1139,7 +1139,7 @@ public void setFloatVar3(float newFloatVar3) { * @generated */ public float getFloatVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); } /** @@ -1148,7 +1148,7 @@ public float getFloatVar4() { * @generated */ public void setFloatVar4(float newFloatVar4) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, newFloatVar4); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); } /** @@ -1157,7 +1157,7 @@ public void setFloatVar4(float newFloatVar4) { * @generated */ public float getFloatVar5() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); } /** @@ -1166,7 +1166,7 @@ public float getFloatVar5() { * @generated */ public void setFloatVar5(float newFloatVar5) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, newFloatVar5); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); } /** @@ -1175,7 +1175,7 @@ public void setFloatVar5(float newFloatVar5) { * @generated */ public double getDoubleVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); } /** @@ -1184,7 +1184,7 @@ public double getDoubleVar1() { * @generated */ public void setDoubleVar1(double newDoubleVar1) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, newDoubleVar1); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); } /** @@ -1193,7 +1193,7 @@ public void setDoubleVar1(double newDoubleVar1) { * @generated */ public double getDoubleVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); } /** @@ -1202,7 +1202,7 @@ public double getDoubleVar2() { * @generated */ public void setDoubleVar2(double newDoubleVar2) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, newDoubleVar2); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); } /** @@ -1211,7 +1211,7 @@ public void setDoubleVar2(double newDoubleVar2) { * @generated */ public double getDoubleVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); } /** @@ -1220,7 +1220,7 @@ public double getDoubleVar3() { * @generated */ public void setDoubleVar3(double newDoubleVar3) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, newDoubleVar3); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); } /** @@ -1229,7 +1229,7 @@ public void setDoubleVar3(double newDoubleVar3) { * @generated */ public double getDoubleVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); } /** @@ -1238,7 +1238,7 @@ public double getDoubleVar4() { * @generated */ public void setDoubleVar4(double newDoubleVar4) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, newDoubleVar4); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); } /** @@ -1247,7 +1247,7 @@ public void setDoubleVar4(double newDoubleVar4) { * @generated */ public double getDoubleVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); } /** @@ -1256,7 +1256,7 @@ public double getDoubleVar5() { * @generated */ public void setDoubleVar5(double newDoubleVar5) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, newDoubleVar5); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); } /** @@ -1265,7 +1265,7 @@ public void setDoubleVar5(double newDoubleVar5) { * @generated */ public String getBooleanVar1() { - return (String)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); } /** @@ -1274,7 +1274,7 @@ public String getBooleanVar1() { * @generated */ public void setBooleanVar1(String newBooleanVar1) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, newBooleanVar1); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); } /** @@ -1283,7 +1283,7 @@ public void setBooleanVar1(String newBooleanVar1) { * @generated */ public boolean isBooleanVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); } /** @@ -1292,7 +1292,7 @@ public boolean isBooleanVar2() { * @generated */ public void setBooleanVar2(boolean newBooleanVar2) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, newBooleanVar2); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); } /** @@ -1301,7 +1301,7 @@ public void setBooleanVar2(boolean newBooleanVar2) { * @generated */ public boolean isBooleanVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); } /** @@ -1310,7 +1310,7 @@ public boolean isBooleanVar3() { * @generated */ public void setBooleanVar3(boolean newBooleanVar3) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, newBooleanVar3); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); } /** @@ -1319,7 +1319,7 @@ public void setBooleanVar3(boolean newBooleanVar3) { * @generated */ public boolean isBooleanVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); } /** @@ -1328,7 +1328,7 @@ public boolean isBooleanVar4() { * @generated */ public void setBooleanVar4(boolean newBooleanVar4) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, newBooleanVar4); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); } /** @@ -1337,7 +1337,7 @@ public void setBooleanVar4(boolean newBooleanVar4) { * @generated */ public boolean isBooleanVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); } /** @@ -1346,7 +1346,7 @@ public boolean isBooleanVar5() { * @generated */ public void setBooleanVar5(boolean newBooleanVar5) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, newBooleanVar5); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); } /** @@ -1355,7 +1355,7 @@ public void setBooleanVar5(boolean newBooleanVar5) { * @generated */ public boolean isStringVar1() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); } /** @@ -1364,7 +1364,7 @@ public boolean isStringVar1() { * @generated */ public void setStringVar1(boolean newStringVar1) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, newStringVar1); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); } /** @@ -1373,7 +1373,7 @@ public void setStringVar1(boolean newStringVar1) { * @generated */ public boolean isStringVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); } /** @@ -1382,7 +1382,7 @@ public boolean isStringVar2() { * @generated */ public void setStringVar2(boolean newStringVar2) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, newStringVar2); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); } /** @@ -1391,7 +1391,7 @@ public void setStringVar2(boolean newStringVar2) { * @generated */ public boolean isStringVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); } /** @@ -1400,7 +1400,7 @@ public boolean isStringVar3() { * @generated */ public void setStringVar3(boolean newStringVar3) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, newStringVar3); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); } /** @@ -1409,7 +1409,7 @@ public void setStringVar3(boolean newStringVar3) { * @generated */ public boolean isStringVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); } /** @@ -1418,7 +1418,7 @@ public boolean isStringVar4() { * @generated */ public void setStringVar4(boolean newStringVar4) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, newStringVar4); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); } /** @@ -1427,7 +1427,7 @@ public void setStringVar4(boolean newStringVar4) { * @generated */ public boolean isStringVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); } /** @@ -1436,7 +1436,7 @@ public boolean isStringVar5() { * @generated */ public void setStringVar5(boolean newStringVar5) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, newStringVar5); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); } /** @@ -1447,7 +1447,7 @@ public void setStringVar5(boolean newStringVar5) { @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); @@ -1461,101 +1461,101 @@ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested(); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return getId(); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return getContents(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1(); - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2(); - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3(); - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4(); - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5(); - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1(); - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2(); - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3(); - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4(); - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5(); - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1(); - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2(); - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3(); - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4(); - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5(); - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1(); - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2(); - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3(); - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4(); - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5(); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1(); - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2(); - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3(); - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4(); - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5(); - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1(); - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2(); - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3(); - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4(); - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5(); - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1(); - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2(); - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3(); - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4(); - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5(); - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return getBooleanVar1(); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2(); - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3(); - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4(); - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5(); - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return isStringVar1(); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return isStringVar2(); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return isStringVar3(); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return isStringVar4(); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return isStringVar5(); } return super.eGet(featureID, resolve, coreType); @@ -1570,149 +1570,149 @@ public Object eGet(int featureID, boolean resolve, boolean coreType) { @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested((Boolean)newValue); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId((String)newValue); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); getContents().addAll((Collection)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1((Short)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2((Integer)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3((Long)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4((Float)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5((Double)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1((Integer)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2((Long)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3((Float)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4((Double)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5((Short)newValue); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1((Long)newValue); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2((Float)newValue); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3((Double)newValue); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2((Long)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3((Float)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4((Double)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5((String)newValue); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1((Float)newValue); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2((Double)newValue); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5((Long)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1((Double)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5((Float)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5((Double)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1((String)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5((Boolean)newValue); return; } @@ -1727,148 +1727,148 @@ public void eSet(int featureID, Object newValue) { @Override public void eUnset(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested(TESTED_EDEFAULT); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId(ID_EDEFAULT); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1(BYTE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2(BYTE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3(BYTE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4(BYTE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5(BYTE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1(SHORT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2(SHORT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3(SHORT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4(SHORT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5(SHORT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1(INT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2(INT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3(INT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4(INT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5(INT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1(CHAR_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2(CHAR_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3(CHAR_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4(CHAR_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5(CHAR_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1(LONG_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2(LONG_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3(LONG_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4(LONG_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5(LONG_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1(FLOAT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2(FLOAT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3(FLOAT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4(FLOAT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5(FLOAT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1(DOUBLE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2(DOUBLE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3(DOUBLE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4(DOUBLE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5(DOUBLE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1(STRING_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2(STRING_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3(STRING_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4(STRING_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5(STRING_VAR5_EDEFAULT); return; } @@ -1883,101 +1883,101 @@ public void eUnset(int featureID) { @Override public boolean eIsSet(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested() != TESTED_EDEFAULT; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return !getContents().isEmpty(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1() != BYTE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2() != BYTE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3() != BYTE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4() != BYTE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5() != BYTE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1() != SHORT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2() != SHORT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3() != SHORT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4() != SHORT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5() != SHORT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1() != INT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2() != INT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3() != INT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4() != INT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5() != INT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1() != CHAR_VAR1_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2() != CHAR_VAR2_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3() != CHAR_VAR3_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4() != CHAR_VAR4_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return CHAR_VAR5_EDEFAULT == null ? getCharVar5() != null : !CHAR_VAR5_EDEFAULT.equals(getCharVar5()); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1() != LONG_VAR1_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2() != LONG_VAR2_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3() != LONG_VAR3_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4() != LONG_VAR4_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5() != LONG_VAR5_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1() != FLOAT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2() != FLOAT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3() != FLOAT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4() != FLOAT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5() != FLOAT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return BOOLEAN_VAR1_EDEFAULT == null ? getBooleanVar1() != null : !BOOLEAN_VAR1_EDEFAULT.equals(getBooleanVar1()); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return isStringVar1() != STRING_VAR1_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return isStringVar2() != STRING_VAR2_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return isStringVar3() != STRING_VAR3_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return isStringVar4() != STRING_VAR4_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return isStringVar5() != STRING_VAR5_EDEFAULT; } return super.eIsSet(featureID); @@ -1992,7 +1992,7 @@ public boolean eIsSet(int featureID) { public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__ID: return BasePackage.IID__ID; + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; default: return -1; } } @@ -2003,7 +2003,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; default: return -1; } } @@ -2019,7 +2019,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (baseFeatureID) { - case BasePackage.IID__ID: return ArtefactPackage.FILE__ID; + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; default: return -1; } } @@ -2030,11 +2030,11 @@ public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (baseFeatureID) { - case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.FILE__CONTENTS; + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } -} //FileImpl +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactAdapterFactory.java index d4f2b6d49..1bccb559a 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -78,8 +78,8 @@ public Adapter caseDiagram(Diagram object) { return createDiagramAdapter(); } @Override - public Adapter caseFile(File object) { - return createFileAdapter(); + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); } @Override public Adapter caseITestable(ITestable object) { @@ -136,16 +136,16 @@ public Adapter createDiagramAdapter() { } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.File File}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch Sketch}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.changedtypes.testmodel.artefact.File + * @see com.specmate.migration.test.changedtypes.testmodel.artefact.Sketch * @generated */ - public Adapter createFileAdapter() { + public Adapter createSketchAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactSwitch.java index 2e7019e2d..c276c85fe 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/changedtypes/testmodel/artefact/util/ArtefactSwitch.java @@ -83,14 +83,14 @@ protected T doSwitch(int classifierID, EObject theEObject) { if (result == null) result = defaultCase(theEObject); return result; } - case ArtefactPackage.FILE: { - File file = (File)theEObject; - T result = caseFile(file); - if (result == null) result = caseIModifiable(file); - if (result == null) result = caseIContainer(file); - if (result == null) result = caseITestable(file); - if (result == null) result = caseIContentElement(file); - if (result == null) result = caseIID(file); + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseIID(sketch); if (result == null) result = defaultCase(theEObject); return result; } @@ -114,17 +114,17 @@ public T caseDiagram(Diagram object) { } /** - * Returns the result of interpreting the object as an instance of 'File'. + * Returns the result of interpreting the object as an instance of 'Sketch'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'File'. + * @return the result of interpreting the object as an instance of 'Sketch'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseFile(File object) { + public T caseSketch(Sketch object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactFactory.java index b3be4009f..81da74840 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactFactory.java @@ -40,13 +40,13 @@ public interface ArtefactFactory extends EFactory { Document createDocument(); /** - * Returns a new object of class 'File'. + * Returns a new object of class 'Sketch'. * * - * @return a new object of class 'File'. + * @return a new object of class 'Sketch'. * @generated */ - File createFile(); + Sketch createSketch(); /** * Returns the package supported by this factory. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactPackage.java index 968041905..663783438 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactPackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/ArtefactPackage.java @@ -185,16 +185,15 @@ public interface ArtefactPackage extends EPackage { */ int DOCUMENT_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; - /** - * The meta object id for the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl File}' class. + * The meta object id for the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - int FILE = 2; + int SKETCH = 2; /** * The feature id for the 'Tested' attribute. @@ -203,7 +202,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__TESTED = BasePackage.IMODIFIABLE__TESTED; + int SKETCH__TESTED = BasePackage.IMODIFIABLE__TESTED; /** * The feature id for the 'Id' attribute. @@ -212,7 +211,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; /** * The feature id for the 'Contents' containment reference list. @@ -221,7 +220,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; /** * The feature id for the 'Byte Var1' attribute. @@ -230,7 +229,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; /** * The feature id for the 'Byte Var2' attribute. @@ -239,7 +238,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; /** * The feature id for the 'Byte Var3' attribute. @@ -248,7 +247,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; /** * The feature id for the 'Byte Var4' attribute. @@ -257,7 +256,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; /** * The feature id for the 'Byte Var5' attribute. @@ -266,7 +265,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; /** * The feature id for the 'Short Var1' attribute. @@ -275,7 +274,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; /** * The feature id for the 'Short Var2' attribute. @@ -284,7 +283,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; /** * The feature id for the 'Short Var3' attribute. @@ -293,7 +292,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; /** * The feature id for the 'Short Var4' attribute. @@ -302,7 +301,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; /** * The feature id for the 'Short Var5' attribute. @@ -311,7 +310,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; /** * The feature id for the 'Int Var1' attribute. @@ -320,7 +319,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; /** * The feature id for the 'Int Var2' attribute. @@ -329,7 +328,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; /** * The feature id for the 'Int Var3' attribute. @@ -338,7 +337,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; /** * The feature id for the 'Int Var4' attribute. @@ -347,7 +346,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; /** * The feature id for the 'Int Var5' attribute. @@ -356,7 +355,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; /** * The feature id for the 'Char Var1' attribute. @@ -365,7 +364,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; /** * The feature id for the 'Char Var2' attribute. @@ -374,7 +373,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; /** * The feature id for the 'Char Var3' attribute. @@ -383,7 +382,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; /** * The feature id for the 'Char Var4' attribute. @@ -392,7 +391,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; /** * The feature id for the 'Char Var5' attribute. @@ -401,7 +400,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; /** * The feature id for the 'Long Var1' attribute. @@ -410,7 +409,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; /** * The feature id for the 'Long Var2' attribute. @@ -419,7 +418,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; /** * The feature id for the 'Long Var3' attribute. @@ -428,7 +427,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; /** * The feature id for the 'Long Var4' attribute. @@ -437,7 +436,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; /** * The feature id for the 'Long Var5' attribute. @@ -446,7 +445,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; /** * The feature id for the 'Float Var1' attribute. @@ -455,7 +454,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; /** * The feature id for the 'Float Var2' attribute. @@ -464,7 +463,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; /** * The feature id for the 'Float Var3' attribute. @@ -473,7 +472,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; /** * The feature id for the 'Float Var4' attribute. @@ -482,7 +481,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; /** * The feature id for the 'Float Var5' attribute. @@ -491,7 +490,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; /** * The feature id for the 'Double Var1' attribute. @@ -500,7 +499,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; /** * The feature id for the 'Double Var2' attribute. @@ -509,7 +508,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; /** * The feature id for the 'Double Var3' attribute. @@ -518,7 +517,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; /** * The feature id for the 'Double Var4' attribute. @@ -527,7 +526,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; /** * The feature id for the 'Double Var5' attribute. @@ -536,7 +535,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; /** * The feature id for the 'Boolean Var1' attribute. @@ -545,7 +544,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; /** * The feature id for the 'Boolean Var2' attribute. @@ -554,7 +553,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; /** * The feature id for the 'Boolean Var3' attribute. @@ -563,7 +562,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; /** * The feature id for the 'Boolean Var4' attribute. @@ -572,7 +571,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; /** * The feature id for the 'Boolean Var5' attribute. @@ -581,7 +580,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; /** * The feature id for the 'String Var1' attribute. @@ -590,7 +589,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; /** * The feature id for the 'String Var2' attribute. @@ -599,7 +598,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; /** * The feature id for the 'String Var3' attribute. @@ -608,7 +607,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; /** * The feature id for the 'String Var4' attribute. @@ -617,7 +616,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; /** * The feature id for the 'String Var5' attribute. @@ -626,25 +625,25 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; /** - * The number of structural features of the 'File' class. + * The number of structural features of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; /** - * The number of operations of the 'File' class. + * The number of operations of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** @@ -690,509 +689,509 @@ public interface ArtefactPackage extends EPackage { EAttribute getDocument_Owner(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File File}'. + * Returns the meta object for class '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch Sketch}'. * * - * @return the meta object for class 'File'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch * @generated */ - EClass getFile(); + EClass getSketch(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar1 Byte Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. * * * @return the meta object for the attribute 'Byte Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar1(); + EAttribute getSketch_ByteVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar2 Byte Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. * * * @return the meta object for the attribute 'Byte Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar2(); + EAttribute getSketch_ByteVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar3 Byte Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. * * * @return the meta object for the attribute 'Byte Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar3(); + EAttribute getSketch_ByteVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar4 Byte Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. * * * @return the meta object for the attribute 'Byte Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar4(); + EAttribute getSketch_ByteVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar5 Byte Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. * * * @return the meta object for the attribute 'Byte Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar5(); + EAttribute getSketch_ByteVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar1 Short Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. * * * @return the meta object for the attribute 'Short Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar1(); + EAttribute getSketch_ShortVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar2 Short Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. * * * @return the meta object for the attribute 'Short Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar2(); + EAttribute getSketch_ShortVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar3 Short Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. * * * @return the meta object for the attribute 'Short Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar3(); + EAttribute getSketch_ShortVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar4 Short Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. * * * @return the meta object for the attribute 'Short Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar4(); + EAttribute getSketch_ShortVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar5 Short Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. * * * @return the meta object for the attribute 'Short Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar5(); + EAttribute getSketch_ShortVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar1 Int Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. * * * @return the meta object for the attribute 'Int Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar1(); + EAttribute getSketch_IntVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar2 Int Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. * * * @return the meta object for the attribute 'Int Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar2(); + EAttribute getSketch_IntVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar3 Int Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. * * * @return the meta object for the attribute 'Int Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar3(); + EAttribute getSketch_IntVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar4 Int Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. * * * @return the meta object for the attribute 'Int Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar4(); + EAttribute getSketch_IntVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar5 Int Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. * * * @return the meta object for the attribute 'Int Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar5(); + EAttribute getSketch_IntVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar1 Char Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. * * * @return the meta object for the attribute 'Char Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar1(); + EAttribute getSketch_CharVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar2 Char Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. * * * @return the meta object for the attribute 'Char Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar2(); + EAttribute getSketch_CharVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar3 Char Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. * * * @return the meta object for the attribute 'Char Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar3(); + EAttribute getSketch_CharVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar4 Char Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. * * * @return the meta object for the attribute 'Char Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar4(); + EAttribute getSketch_CharVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar5 Char Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. * * * @return the meta object for the attribute 'Char Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar5(); + EAttribute getSketch_CharVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar1 Long Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. * * * @return the meta object for the attribute 'Long Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar1(); + EAttribute getSketch_LongVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar2 Long Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. * * * @return the meta object for the attribute 'Long Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar2(); + EAttribute getSketch_LongVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar3 Long Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. * * * @return the meta object for the attribute 'Long Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar3(); + EAttribute getSketch_LongVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar4 Long Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. * * * @return the meta object for the attribute 'Long Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar4(); + EAttribute getSketch_LongVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar5 Long Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. * * * @return the meta object for the attribute 'Long Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar5(); + EAttribute getSketch_LongVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar1 Float Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. * * * @return the meta object for the attribute 'Float Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar1(); + EAttribute getSketch_FloatVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar2 Float Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. * * * @return the meta object for the attribute 'Float Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar2(); + EAttribute getSketch_FloatVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar3 Float Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. * * * @return the meta object for the attribute 'Float Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar3(); + EAttribute getSketch_FloatVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar4 Float Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. * * * @return the meta object for the attribute 'Float Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar4(); + EAttribute getSketch_FloatVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar5 Float Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. * * * @return the meta object for the attribute 'Float Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar5(); + EAttribute getSketch_FloatVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar1 Double Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. * * * @return the meta object for the attribute 'Double Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar1(); + EAttribute getSketch_DoubleVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar2 Double Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. * * * @return the meta object for the attribute 'Double Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar2(); + EAttribute getSketch_DoubleVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar3 Double Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. * * * @return the meta object for the attribute 'Double Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar3(); + EAttribute getSketch_DoubleVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar4 Double Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. * * * @return the meta object for the attribute 'Double Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar4(); + EAttribute getSketch_DoubleVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar5 Double Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. * * * @return the meta object for the attribute 'Double Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar5(); + EAttribute getSketch_DoubleVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}'. * * * @return the meta object for the attribute 'Boolean Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar1(); + EAttribute getSketch_BooleanVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. * * * @return the meta object for the attribute 'Boolean Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar2(); + EAttribute getSketch_BooleanVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. * * * @return the meta object for the attribute 'Boolean Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar3(); + EAttribute getSketch_BooleanVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. * * * @return the meta object for the attribute 'Boolean Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar4(); + EAttribute getSketch_BooleanVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. * * * @return the meta object for the attribute 'Boolean Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar5(); + EAttribute getSketch_BooleanVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar1 String Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar1 String Var1}'. * * * @return the meta object for the attribute 'String Var1'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar1() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar1(); + EAttribute getSketch_StringVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar2 String Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar2 String Var2}'. * * * @return the meta object for the attribute 'String Var2'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar2() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar2(); + EAttribute getSketch_StringVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar3 String Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar3 String Var3}'. * * * @return the meta object for the attribute 'String Var3'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar3() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar3(); + EAttribute getSketch_StringVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar4 String Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar4 String Var4}'. * * * @return the meta object for the attribute 'String Var4'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar4() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar4(); + EAttribute getSketch_StringVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar5 String Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar5 String Var5}'. * * * @return the meta object for the attribute 'String Var5'. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar5() - * @see #getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar5(); + EAttribute getSketch_StringVar5(); /** * Returns the factory that creates the instances of the model. @@ -1254,14 +1253,14 @@ interface Literals { EAttribute DOCUMENT__OWNER = eINSTANCE.getDocument_Owner(); /** - * The meta object literal for the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl File}' class. + * The meta object literal for the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.objectadded.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - EClass FILE = eINSTANCE.getFile(); + EClass SKETCH = eINSTANCE.getSketch(); /** * The meta object literal for the 'Byte Var1' attribute feature. @@ -1269,7 +1268,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR1 = eINSTANCE.getFile_ByteVar1(); + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); /** * The meta object literal for the 'Byte Var2' attribute feature. @@ -1277,7 +1276,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR2 = eINSTANCE.getFile_ByteVar2(); + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); /** * The meta object literal for the 'Byte Var3' attribute feature. @@ -1285,7 +1284,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR3 = eINSTANCE.getFile_ByteVar3(); + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); /** * The meta object literal for the 'Byte Var4' attribute feature. @@ -1293,7 +1292,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR4 = eINSTANCE.getFile_ByteVar4(); + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); /** * The meta object literal for the 'Byte Var5' attribute feature. @@ -1301,7 +1300,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR5 = eINSTANCE.getFile_ByteVar5(); + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); /** * The meta object literal for the 'Short Var1' attribute feature. @@ -1309,7 +1308,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR1 = eINSTANCE.getFile_ShortVar1(); + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); /** * The meta object literal for the 'Short Var2' attribute feature. @@ -1317,7 +1316,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR2 = eINSTANCE.getFile_ShortVar2(); + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); /** * The meta object literal for the 'Short Var3' attribute feature. @@ -1325,7 +1324,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR3 = eINSTANCE.getFile_ShortVar3(); + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); /** * The meta object literal for the 'Short Var4' attribute feature. @@ -1333,7 +1332,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR4 = eINSTANCE.getFile_ShortVar4(); + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); /** * The meta object literal for the 'Short Var5' attribute feature. @@ -1341,7 +1340,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR5 = eINSTANCE.getFile_ShortVar5(); + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); /** * The meta object literal for the 'Int Var1' attribute feature. @@ -1349,7 +1348,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR1 = eINSTANCE.getFile_IntVar1(); + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); /** * The meta object literal for the 'Int Var2' attribute feature. @@ -1357,7 +1356,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR2 = eINSTANCE.getFile_IntVar2(); + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); /** * The meta object literal for the 'Int Var3' attribute feature. @@ -1365,7 +1364,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR3 = eINSTANCE.getFile_IntVar3(); + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); /** * The meta object literal for the 'Int Var4' attribute feature. @@ -1373,7 +1372,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR4 = eINSTANCE.getFile_IntVar4(); + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); /** * The meta object literal for the 'Int Var5' attribute feature. @@ -1381,7 +1380,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR5 = eINSTANCE.getFile_IntVar5(); + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); /** * The meta object literal for the 'Char Var1' attribute feature. @@ -1389,7 +1388,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR1 = eINSTANCE.getFile_CharVar1(); + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); /** * The meta object literal for the 'Char Var2' attribute feature. @@ -1397,7 +1396,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR2 = eINSTANCE.getFile_CharVar2(); + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); /** * The meta object literal for the 'Char Var3' attribute feature. @@ -1405,7 +1404,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR3 = eINSTANCE.getFile_CharVar3(); + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); /** * The meta object literal for the 'Char Var4' attribute feature. @@ -1413,7 +1412,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR4 = eINSTANCE.getFile_CharVar4(); + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); /** * The meta object literal for the 'Char Var5' attribute feature. @@ -1421,7 +1420,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR5 = eINSTANCE.getFile_CharVar5(); + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); /** * The meta object literal for the 'Long Var1' attribute feature. @@ -1429,7 +1428,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR1 = eINSTANCE.getFile_LongVar1(); + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); /** * The meta object literal for the 'Long Var2' attribute feature. @@ -1437,7 +1436,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR2 = eINSTANCE.getFile_LongVar2(); + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); /** * The meta object literal for the 'Long Var3' attribute feature. @@ -1445,7 +1444,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR3 = eINSTANCE.getFile_LongVar3(); + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); /** * The meta object literal for the 'Long Var4' attribute feature. @@ -1453,7 +1452,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR4 = eINSTANCE.getFile_LongVar4(); + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); /** * The meta object literal for the 'Long Var5' attribute feature. @@ -1461,7 +1460,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR5 = eINSTANCE.getFile_LongVar5(); + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); /** * The meta object literal for the 'Float Var1' attribute feature. @@ -1469,7 +1468,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR1 = eINSTANCE.getFile_FloatVar1(); + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); /** * The meta object literal for the 'Float Var2' attribute feature. @@ -1477,7 +1476,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR2 = eINSTANCE.getFile_FloatVar2(); + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); /** * The meta object literal for the 'Float Var3' attribute feature. @@ -1485,7 +1484,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR3 = eINSTANCE.getFile_FloatVar3(); + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); /** * The meta object literal for the 'Float Var4' attribute feature. @@ -1493,7 +1492,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR4 = eINSTANCE.getFile_FloatVar4(); + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); /** * The meta object literal for the 'Float Var5' attribute feature. @@ -1501,7 +1500,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR5 = eINSTANCE.getFile_FloatVar5(); + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); /** * The meta object literal for the 'Double Var1' attribute feature. @@ -1509,7 +1508,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR1 = eINSTANCE.getFile_DoubleVar1(); + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); /** * The meta object literal for the 'Double Var2' attribute feature. @@ -1517,7 +1516,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR2 = eINSTANCE.getFile_DoubleVar2(); + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); /** * The meta object literal for the 'Double Var3' attribute feature. @@ -1525,7 +1524,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR3 = eINSTANCE.getFile_DoubleVar3(); + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); /** * The meta object literal for the 'Double Var4' attribute feature. @@ -1533,7 +1532,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR4 = eINSTANCE.getFile_DoubleVar4(); + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); /** * The meta object literal for the 'Double Var5' attribute feature. @@ -1541,7 +1540,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR5 = eINSTANCE.getFile_DoubleVar5(); + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); /** * The meta object literal for the 'Boolean Var1' attribute feature. @@ -1549,7 +1548,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR1 = eINSTANCE.getFile_BooleanVar1(); + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); /** * The meta object literal for the 'Boolean Var2' attribute feature. @@ -1557,7 +1556,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR2 = eINSTANCE.getFile_BooleanVar2(); + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); /** * The meta object literal for the 'Boolean Var3' attribute feature. @@ -1565,7 +1564,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR3 = eINSTANCE.getFile_BooleanVar3(); + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); /** * The meta object literal for the 'Boolean Var4' attribute feature. @@ -1573,7 +1572,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR4 = eINSTANCE.getFile_BooleanVar4(); + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); /** * The meta object literal for the 'Boolean Var5' attribute feature. @@ -1581,7 +1580,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR5 = eINSTANCE.getFile_BooleanVar5(); + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); /** * The meta object literal for the 'String Var1' attribute feature. @@ -1589,7 +1588,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR1 = eINSTANCE.getFile_StringVar1(); + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); /** * The meta object literal for the 'String Var2' attribute feature. @@ -1597,7 +1596,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR2 = eINSTANCE.getFile_StringVar2(); + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); /** * The meta object literal for the 'String Var3' attribute feature. @@ -1605,7 +1604,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR3 = eINSTANCE.getFile_StringVar3(); + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); /** * The meta object literal for the 'String Var4' attribute feature. @@ -1613,7 +1612,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR4 = eINSTANCE.getFile_StringVar4(); + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); /** * The meta object literal for the 'String Var5' attribute feature. @@ -1621,7 +1620,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR5 = eINSTANCE.getFile_StringVar5(); + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/File.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/Sketch.java similarity index 82% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/File.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/Sketch.java index f4c2e024a..90a5b62e4 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/File.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/Sketch.java @@ -7,65 +7,65 @@ /** * - * A representation of the model object 'File'. + * A representation of the model object 'Sketch'. * * *

* The following features are supported: *

*
    - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar5 String Var5}
  • *
* - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch() * @model * @generated */ -public interface File extends IModifiable, IContainer { +public interface Sketch extends IModifiable, IContainer { /** * Returns the value of the 'Byte Var1' attribute. * @@ -76,14 +76,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var1' attribute. * @see #setByteVar1(byte) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() * @model * @generated */ byte getByteVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar1 Byte Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. * * * @param value the new value of the 'Byte Var1' attribute. @@ -102,14 +102,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var2' attribute. * @see #setByteVar2(byte) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() * @model * @generated */ byte getByteVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar2 Byte Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. * * * @param value the new value of the 'Byte Var2' attribute. @@ -128,14 +128,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var3' attribute. * @see #setByteVar3(byte) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() * @model * @generated */ byte getByteVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar3 Byte Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. * * * @param value the new value of the 'Byte Var3' attribute. @@ -154,14 +154,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var4' attribute. * @see #setByteVar4(byte) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() * @model * @generated */ byte getByteVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar4 Byte Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. * * * @param value the new value of the 'Byte Var4' attribute. @@ -180,14 +180,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var5' attribute. * @see #setByteVar5(byte) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() * @model * @generated */ byte getByteVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getByteVar5 Byte Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. * * * @param value the new value of the 'Byte Var5' attribute. @@ -206,14 +206,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var1' attribute. * @see #setShortVar1(short) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() * @model * @generated */ short getShortVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar1 Short Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. * * * @param value the new value of the 'Short Var1' attribute. @@ -232,14 +232,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var2' attribute. * @see #setShortVar2(short) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() * @model * @generated */ short getShortVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar2 Short Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. * * * @param value the new value of the 'Short Var2' attribute. @@ -258,14 +258,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var3' attribute. * @see #setShortVar3(short) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() * @model * @generated */ short getShortVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar3 Short Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. * * * @param value the new value of the 'Short Var3' attribute. @@ -284,14 +284,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var4' attribute. * @see #setShortVar4(short) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() * @model * @generated */ short getShortVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar4 Short Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. * * * @param value the new value of the 'Short Var4' attribute. @@ -310,14 +310,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var5' attribute. * @see #setShortVar5(short) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() * @model * @generated */ short getShortVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getShortVar5 Short Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. * * * @param value the new value of the 'Short Var5' attribute. @@ -336,14 +336,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var1' attribute. * @see #setIntVar1(int) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_IntVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() * @model * @generated */ int getIntVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar1 Int Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. * * * @param value the new value of the 'Int Var1' attribute. @@ -362,14 +362,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var2' attribute. * @see #setIntVar2(int) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_IntVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() * @model * @generated */ int getIntVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar2 Int Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. * * * @param value the new value of the 'Int Var2' attribute. @@ -388,14 +388,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var3' attribute. * @see #setIntVar3(int) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_IntVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() * @model * @generated */ int getIntVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar3 Int Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. * * * @param value the new value of the 'Int Var3' attribute. @@ -414,14 +414,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var4' attribute. * @see #setIntVar4(int) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_IntVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() * @model * @generated */ int getIntVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar4 Int Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. * * * @param value the new value of the 'Int Var4' attribute. @@ -440,14 +440,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var5' attribute. * @see #setIntVar5(int) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_IntVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() * @model * @generated */ int getIntVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getIntVar5 Int Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. * * * @param value the new value of the 'Int Var5' attribute. @@ -466,14 +466,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var1' attribute. * @see #setCharVar1(char) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_CharVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() * @model * @generated */ char getCharVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar1 Char Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. * * * @param value the new value of the 'Char Var1' attribute. @@ -492,14 +492,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var2' attribute. * @see #setCharVar2(char) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_CharVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() * @model * @generated */ char getCharVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar2 Char Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. * * * @param value the new value of the 'Char Var2' attribute. @@ -518,14 +518,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var3' attribute. * @see #setCharVar3(char) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_CharVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() * @model * @generated */ char getCharVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar3 Char Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. * * * @param value the new value of the 'Char Var3' attribute. @@ -544,14 +544,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var4' attribute. * @see #setCharVar4(char) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_CharVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() * @model * @generated */ char getCharVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar4 Char Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. * * * @param value the new value of the 'Char Var4' attribute. @@ -570,14 +570,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var5' attribute. * @see #setCharVar5(char) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_CharVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() * @model * @generated */ char getCharVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getCharVar5 Char Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. * * * @param value the new value of the 'Char Var5' attribute. @@ -596,14 +596,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var1' attribute. * @see #setLongVar1(long) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_LongVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() * @model * @generated */ long getLongVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar1 Long Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. * * * @param value the new value of the 'Long Var1' attribute. @@ -622,14 +622,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var2' attribute. * @see #setLongVar2(long) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_LongVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() * @model * @generated */ long getLongVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar2 Long Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. * * * @param value the new value of the 'Long Var2' attribute. @@ -648,14 +648,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var3' attribute. * @see #setLongVar3(long) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_LongVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() * @model * @generated */ long getLongVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar3 Long Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. * * * @param value the new value of the 'Long Var3' attribute. @@ -674,14 +674,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var4' attribute. * @see #setLongVar4(long) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_LongVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() * @model * @generated */ long getLongVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar4 Long Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. * * * @param value the new value of the 'Long Var4' attribute. @@ -700,14 +700,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var5' attribute. * @see #setLongVar5(long) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_LongVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() * @model * @generated */ long getLongVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getLongVar5 Long Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. * * * @param value the new value of the 'Long Var5' attribute. @@ -726,14 +726,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var1' attribute. * @see #setFloatVar1(float) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() * @model * @generated */ float getFloatVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar1 Float Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. * * * @param value the new value of the 'Float Var1' attribute. @@ -752,14 +752,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var2' attribute. * @see #setFloatVar2(float) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() * @model * @generated */ float getFloatVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar2 Float Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. * * * @param value the new value of the 'Float Var2' attribute. @@ -778,14 +778,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var3' attribute. * @see #setFloatVar3(float) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() * @model * @generated */ float getFloatVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar3 Float Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. * * * @param value the new value of the 'Float Var3' attribute. @@ -804,14 +804,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var4' attribute. * @see #setFloatVar4(float) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() * @model * @generated */ float getFloatVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar4 Float Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. * * * @param value the new value of the 'Float Var4' attribute. @@ -830,14 +830,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var5' attribute. * @see #setFloatVar5(float) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() * @model * @generated */ float getFloatVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getFloatVar5 Float Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. * * * @param value the new value of the 'Float Var5' attribute. @@ -856,14 +856,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var1' attribute. * @see #setDoubleVar1(double) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() * @model * @generated */ double getDoubleVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar1 Double Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. * * * @param value the new value of the 'Double Var1' attribute. @@ -882,14 +882,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var2' attribute. * @see #setDoubleVar2(double) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() * @model * @generated */ double getDoubleVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar2 Double Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. * * * @param value the new value of the 'Double Var2' attribute. @@ -908,14 +908,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var3' attribute. * @see #setDoubleVar3(double) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() * @model * @generated */ double getDoubleVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar3 Double Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. * * * @param value the new value of the 'Double Var3' attribute. @@ -934,14 +934,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var4' attribute. * @see #setDoubleVar4(double) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() * @model * @generated */ double getDoubleVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar4 Double Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. * * * @param value the new value of the 'Double Var4' attribute. @@ -960,14 +960,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var5' attribute. * @see #setDoubleVar5(double) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() * @model * @generated */ double getDoubleVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getDoubleVar5 Double Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. * * * @param value the new value of the 'Double Var5' attribute. @@ -986,14 +986,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var1' attribute. * @see #setBooleanVar1(boolean) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() * @model * @generated */ boolean isBooleanVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}' attribute. * * * @param value the new value of the 'Boolean Var1' attribute. @@ -1012,14 +1012,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var2' attribute. * @see #setBooleanVar2(boolean) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() * @model * @generated */ boolean isBooleanVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. * * * @param value the new value of the 'Boolean Var2' attribute. @@ -1038,14 +1038,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var3' attribute. * @see #setBooleanVar3(boolean) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() * @model * @generated */ boolean isBooleanVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. * * * @param value the new value of the 'Boolean Var3' attribute. @@ -1064,14 +1064,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var4' attribute. * @see #setBooleanVar4(boolean) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() * @model * @generated */ boolean isBooleanVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. * * * @param value the new value of the 'Boolean Var4' attribute. @@ -1090,14 +1090,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var5' attribute. * @see #setBooleanVar5(boolean) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() * @model * @generated */ boolean isBooleanVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. * * * @param value the new value of the 'Boolean Var5' attribute. @@ -1116,14 +1116,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var1' attribute. * @see #setStringVar1(String) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_StringVar1() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() * @model * @generated */ String getStringVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar1 String Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar1 String Var1}' attribute. * * * @param value the new value of the 'String Var1' attribute. @@ -1142,14 +1142,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var2' attribute. * @see #setStringVar2(String) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_StringVar2() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() * @model * @generated */ String getStringVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar2 String Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar2 String Var2}' attribute. * * * @param value the new value of the 'String Var2' attribute. @@ -1168,14 +1168,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var3' attribute. * @see #setStringVar3(String) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_StringVar3() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() * @model * @generated */ String getStringVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar3 String Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar3 String Var3}' attribute. * * * @param value the new value of the 'String Var3' attribute. @@ -1194,14 +1194,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var4' attribute. * @see #setStringVar4(String) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_StringVar4() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() * @model * @generated */ String getStringVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar4 String Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar4 String Var4}' attribute. * * * @param value the new value of the 'String Var4' attribute. @@ -1220,14 +1220,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var5' attribute. * @see #setStringVar5(String) - * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getFile_StringVar5() + * @see com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() * @model * @generated */ String getStringVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File#getStringVar5 String Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch#getStringVar5 String Var5}' attribute. * * * @param value the new value of the 'String Var5' attribute. @@ -1236,4 +1236,4 @@ public interface File extends IModifiable, IContainer { */ void setStringVar5(String value); -} // File +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactFactoryImpl.java index 22dd41523..2caeed90c 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactFactoryImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -58,7 +58,7 @@ public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ArtefactPackage.DIAGRAM: return createDiagram(); case ArtefactPackage.DOCUMENT: return createDocument(); - case ArtefactPackage.FILE: return createFile(); + case ArtefactPackage.SKETCH: return createSketch(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } @@ -89,9 +89,9 @@ public Document createDocument() { * * @generated */ - public File createFile() { - FileImpl file = new FileImpl(); - return file; + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactPackageImpl.java index ff32f726b..5c1196927 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactPackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -6,8 +6,8 @@ import com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage; import com.specmate.migration.test.objectadded.testmodel.artefact.Diagram; import com.specmate.migration.test.objectadded.testmodel.artefact.Document; +import com.specmate.migration.test.objectadded.testmodel.artefact.Sketch; -import com.specmate.migration.test.objectadded.testmodel.artefact.File; import com.specmate.migration.test.objectadded.testmodel.base.BasePackage; import com.specmate.migration.test.objectadded.testmodel.base.impl.BasePackageImpl; @@ -44,7 +44,7 @@ public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage * * @generated */ - private EClass fileEClass = null; + private EClass sketchEClass = null; /** * Creates an instance of the model Package, registered with @@ -153,8 +153,8 @@ public EAttribute getDocument_Owner() { * * @generated */ - public EClass getFile() { - return fileEClass; + public EClass getSketch() { + return sketchEClass; } /** @@ -162,8 +162,8 @@ public EClass getFile() { * * @generated */ - public EAttribute getFile_ByteVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(0); + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); } /** @@ -171,8 +171,8 @@ public EAttribute getFile_ByteVar1() { * * @generated */ - public EAttribute getFile_ByteVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(1); + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); } /** @@ -180,8 +180,8 @@ public EAttribute getFile_ByteVar2() { * * @generated */ - public EAttribute getFile_ByteVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(2); + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); } /** @@ -189,8 +189,8 @@ public EAttribute getFile_ByteVar3() { * * @generated */ - public EAttribute getFile_ByteVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(3); + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); } /** @@ -198,8 +198,8 @@ public EAttribute getFile_ByteVar4() { * * @generated */ - public EAttribute getFile_ByteVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(4); + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); } /** @@ -207,8 +207,8 @@ public EAttribute getFile_ByteVar5() { * * @generated */ - public EAttribute getFile_ShortVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(5); + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); } /** @@ -216,8 +216,8 @@ public EAttribute getFile_ShortVar1() { * * @generated */ - public EAttribute getFile_ShortVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(6); + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); } /** @@ -225,8 +225,8 @@ public EAttribute getFile_ShortVar2() { * * @generated */ - public EAttribute getFile_ShortVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(7); + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); } /** @@ -234,8 +234,8 @@ public EAttribute getFile_ShortVar3() { * * @generated */ - public EAttribute getFile_ShortVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(8); + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); } /** @@ -243,8 +243,8 @@ public EAttribute getFile_ShortVar4() { * * @generated */ - public EAttribute getFile_ShortVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(9); + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); } /** @@ -252,8 +252,8 @@ public EAttribute getFile_ShortVar5() { * * @generated */ - public EAttribute getFile_IntVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(10); + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); } /** @@ -261,8 +261,8 @@ public EAttribute getFile_IntVar1() { * * @generated */ - public EAttribute getFile_IntVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(11); + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); } /** @@ -270,8 +270,8 @@ public EAttribute getFile_IntVar2() { * * @generated */ - public EAttribute getFile_IntVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(12); + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); } /** @@ -279,8 +279,8 @@ public EAttribute getFile_IntVar3() { * * @generated */ - public EAttribute getFile_IntVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(13); + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); } /** @@ -288,8 +288,8 @@ public EAttribute getFile_IntVar4() { * * @generated */ - public EAttribute getFile_IntVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(14); + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); } /** @@ -297,8 +297,8 @@ public EAttribute getFile_IntVar5() { * * @generated */ - public EAttribute getFile_CharVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(15); + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); } /** @@ -306,8 +306,8 @@ public EAttribute getFile_CharVar1() { * * @generated */ - public EAttribute getFile_CharVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(16); + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); } /** @@ -315,8 +315,8 @@ public EAttribute getFile_CharVar2() { * * @generated */ - public EAttribute getFile_CharVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(17); + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); } /** @@ -324,8 +324,8 @@ public EAttribute getFile_CharVar3() { * * @generated */ - public EAttribute getFile_CharVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(18); + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); } /** @@ -333,8 +333,8 @@ public EAttribute getFile_CharVar4() { * * @generated */ - public EAttribute getFile_CharVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(19); + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); } /** @@ -342,8 +342,8 @@ public EAttribute getFile_CharVar5() { * * @generated */ - public EAttribute getFile_LongVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(20); + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); } /** @@ -351,8 +351,8 @@ public EAttribute getFile_LongVar1() { * * @generated */ - public EAttribute getFile_LongVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(21); + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); } /** @@ -360,8 +360,8 @@ public EAttribute getFile_LongVar2() { * * @generated */ - public EAttribute getFile_LongVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(22); + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); } /** @@ -369,8 +369,8 @@ public EAttribute getFile_LongVar3() { * * @generated */ - public EAttribute getFile_LongVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(23); + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); } /** @@ -378,8 +378,8 @@ public EAttribute getFile_LongVar4() { * * @generated */ - public EAttribute getFile_LongVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(24); + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); } /** @@ -387,8 +387,8 @@ public EAttribute getFile_LongVar5() { * * @generated */ - public EAttribute getFile_FloatVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(25); + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); } /** @@ -396,8 +396,8 @@ public EAttribute getFile_FloatVar1() { * * @generated */ - public EAttribute getFile_FloatVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(26); + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); } /** @@ -405,8 +405,8 @@ public EAttribute getFile_FloatVar2() { * * @generated */ - public EAttribute getFile_FloatVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(27); + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); } /** @@ -414,8 +414,8 @@ public EAttribute getFile_FloatVar3() { * * @generated */ - public EAttribute getFile_FloatVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(28); + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); } /** @@ -423,8 +423,8 @@ public EAttribute getFile_FloatVar4() { * * @generated */ - public EAttribute getFile_FloatVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(29); + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); } /** @@ -432,8 +432,8 @@ public EAttribute getFile_FloatVar5() { * * @generated */ - public EAttribute getFile_DoubleVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(30); + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); } /** @@ -441,8 +441,8 @@ public EAttribute getFile_DoubleVar1() { * * @generated */ - public EAttribute getFile_DoubleVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(31); + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); } /** @@ -450,8 +450,8 @@ public EAttribute getFile_DoubleVar2() { * * @generated */ - public EAttribute getFile_DoubleVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(32); + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); } /** @@ -459,8 +459,8 @@ public EAttribute getFile_DoubleVar3() { * * @generated */ - public EAttribute getFile_DoubleVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(33); + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); } /** @@ -468,8 +468,8 @@ public EAttribute getFile_DoubleVar4() { * * @generated */ - public EAttribute getFile_DoubleVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(34); + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); } /** @@ -477,8 +477,8 @@ public EAttribute getFile_DoubleVar5() { * * @generated */ - public EAttribute getFile_BooleanVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(35); + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); } /** @@ -486,8 +486,8 @@ public EAttribute getFile_BooleanVar1() { * * @generated */ - public EAttribute getFile_BooleanVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(36); + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); } /** @@ -495,8 +495,8 @@ public EAttribute getFile_BooleanVar2() { * * @generated */ - public EAttribute getFile_BooleanVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(37); + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); } /** @@ -504,8 +504,8 @@ public EAttribute getFile_BooleanVar3() { * * @generated */ - public EAttribute getFile_BooleanVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(38); + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); } /** @@ -513,8 +513,8 @@ public EAttribute getFile_BooleanVar4() { * * @generated */ - public EAttribute getFile_BooleanVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(39); + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); } /** @@ -522,8 +522,8 @@ public EAttribute getFile_BooleanVar5() { * * @generated */ - public EAttribute getFile_StringVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(40); + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); } /** @@ -531,8 +531,8 @@ public EAttribute getFile_StringVar1() { * * @generated */ - public EAttribute getFile_StringVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(41); + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); } /** @@ -540,8 +540,8 @@ public EAttribute getFile_StringVar2() { * * @generated */ - public EAttribute getFile_StringVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(42); + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); } /** @@ -549,8 +549,8 @@ public EAttribute getFile_StringVar3() { * * @generated */ - public EAttribute getFile_StringVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(43); + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); } /** @@ -558,8 +558,8 @@ public EAttribute getFile_StringVar4() { * * @generated */ - public EAttribute getFile_StringVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(44); + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); } /** @@ -596,52 +596,52 @@ public void createPackageContents() { createEAttribute(documentEClass, DOCUMENT__LENGTH); createEAttribute(documentEClass, DOCUMENT__OWNER); - fileEClass = createEClass(FILE); - createEAttribute(fileEClass, FILE__BYTE_VAR1); - createEAttribute(fileEClass, FILE__BYTE_VAR2); - createEAttribute(fileEClass, FILE__BYTE_VAR3); - createEAttribute(fileEClass, FILE__BYTE_VAR4); - createEAttribute(fileEClass, FILE__BYTE_VAR5); - createEAttribute(fileEClass, FILE__SHORT_VAR1); - createEAttribute(fileEClass, FILE__SHORT_VAR2); - createEAttribute(fileEClass, FILE__SHORT_VAR3); - createEAttribute(fileEClass, FILE__SHORT_VAR4); - createEAttribute(fileEClass, FILE__SHORT_VAR5); - createEAttribute(fileEClass, FILE__INT_VAR1); - createEAttribute(fileEClass, FILE__INT_VAR2); - createEAttribute(fileEClass, FILE__INT_VAR3); - createEAttribute(fileEClass, FILE__INT_VAR4); - createEAttribute(fileEClass, FILE__INT_VAR5); - createEAttribute(fileEClass, FILE__CHAR_VAR1); - createEAttribute(fileEClass, FILE__CHAR_VAR2); - createEAttribute(fileEClass, FILE__CHAR_VAR3); - createEAttribute(fileEClass, FILE__CHAR_VAR4); - createEAttribute(fileEClass, FILE__CHAR_VAR5); - createEAttribute(fileEClass, FILE__LONG_VAR1); - createEAttribute(fileEClass, FILE__LONG_VAR2); - createEAttribute(fileEClass, FILE__LONG_VAR3); - createEAttribute(fileEClass, FILE__LONG_VAR4); - createEAttribute(fileEClass, FILE__LONG_VAR5); - createEAttribute(fileEClass, FILE__FLOAT_VAR1); - createEAttribute(fileEClass, FILE__FLOAT_VAR2); - createEAttribute(fileEClass, FILE__FLOAT_VAR3); - createEAttribute(fileEClass, FILE__FLOAT_VAR4); - createEAttribute(fileEClass, FILE__FLOAT_VAR5); - createEAttribute(fileEClass, FILE__DOUBLE_VAR1); - createEAttribute(fileEClass, FILE__DOUBLE_VAR2); - createEAttribute(fileEClass, FILE__DOUBLE_VAR3); - createEAttribute(fileEClass, FILE__DOUBLE_VAR4); - createEAttribute(fileEClass, FILE__DOUBLE_VAR5); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR1); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR2); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR3); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR4); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR5); - createEAttribute(fileEClass, FILE__STRING_VAR1); - createEAttribute(fileEClass, FILE__STRING_VAR2); - createEAttribute(fileEClass, FILE__STRING_VAR3); - createEAttribute(fileEClass, FILE__STRING_VAR4); - createEAttribute(fileEClass, FILE__STRING_VAR5); + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); } /** @@ -679,8 +679,8 @@ public void initializePackageContents() { diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); documentEClass.getESuperTypes().add(theBasePackage.getIModifiable()); documentEClass.getESuperTypes().add(theBasePackage.getIContainer()); - fileEClass.getESuperTypes().add(theBasePackage.getIModifiable()); - fileEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); // Initialize classes, features, and operations; add parameters initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); @@ -689,52 +689,52 @@ public void initializePackageContents() { initEAttribute(getDocument_Length(), ecorePackage.getELong(), "length", null, 0, 1, Document.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); initEAttribute(getDocument_Owner(), ecorePackage.getEString(), "owner", null, 0, 1, Document.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEClass(fileEClass, File.class, "File", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEAttribute(getFile_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); // Create resource createResource(eNS_URI); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/FileImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/SketchImpl.java similarity index 63% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/FileImpl.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/SketchImpl.java index df4764d56..357b83307 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/FileImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/impl/SketchImpl.java @@ -3,7 +3,7 @@ package com.specmate.migration.test.objectadded.testmodel.artefact.impl; import com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage; -import com.specmate.migration.test.objectadded.testmodel.artefact.File; +import com.specmate.migration.test.objectadded.testmodel.artefact.Sketch; import com.specmate.migration.test.objectadded.testmodel.base.BasePackage; import com.specmate.migration.test.objectadded.testmodel.base.IContainer; @@ -25,65 +25,65 @@ /** * - * An implementation of the model object 'File'. + * An implementation of the model object 'Sketch'. * *

* The following features are implemented: *

*
    - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#isTested Tested}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getId Id}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getContents Contents}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.FileImpl#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.objectadded.testmodel.artefact.impl.SketchImpl#getStringVar5 String Var5}
  • *
* * @generated */ -public class FileImpl extends MinimalEObjectImpl.Container implements File { +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { /** * The default value of the '{@link #isTested() Tested}' attribute. * @@ -559,7 +559,7 @@ public class FileImpl extends MinimalEObjectImpl.Container implements File { * * @generated */ - protected FileImpl() { + protected SketchImpl() { super(); } @@ -570,7 +570,7 @@ protected FileImpl() { */ @Override protected EClass eStaticClass() { - return ArtefactPackage.Literals.FILE; + return ArtefactPackage.Literals.SKETCH; } /** @@ -589,7 +589,7 @@ protected int eStaticFeatureCount() { * @generated */ public boolean isTested() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); } /** @@ -598,7 +598,7 @@ public boolean isTested() { * @generated */ public void setTested(boolean newTested) { - eDynamicSet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + eDynamicSet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); } /** @@ -607,7 +607,7 @@ public void setTested(boolean newTested) { * @generated */ public String getId() { - return (String)eDynamicGet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); } /** @@ -616,7 +616,7 @@ public String getId() { * @generated */ public void setId(String newId) { - eDynamicSet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, newId); + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); } /** @@ -626,7 +626,7 @@ public void setId(String newId) { */ @SuppressWarnings("unchecked") public EList getContents() { - return (EList)eDynamicGet(ArtefactPackage.FILE__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); } /** @@ -635,7 +635,7 @@ public EList getContents() { * @generated */ public byte getByteVar1() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); } /** @@ -644,7 +644,7 @@ public byte getByteVar1() { * @generated */ public void setByteVar1(byte newByteVar1) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, newByteVar1); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); } /** @@ -653,7 +653,7 @@ public void setByteVar1(byte newByteVar1) { * @generated */ public byte getByteVar2() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); } /** @@ -662,7 +662,7 @@ public byte getByteVar2() { * @generated */ public void setByteVar2(byte newByteVar2) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, newByteVar2); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); } /** @@ -671,7 +671,7 @@ public void setByteVar2(byte newByteVar2) { * @generated */ public byte getByteVar3() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); } /** @@ -680,7 +680,7 @@ public byte getByteVar3() { * @generated */ public void setByteVar3(byte newByteVar3) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, newByteVar3); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); } /** @@ -689,7 +689,7 @@ public void setByteVar3(byte newByteVar3) { * @generated */ public byte getByteVar4() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); } /** @@ -698,7 +698,7 @@ public byte getByteVar4() { * @generated */ public void setByteVar4(byte newByteVar4) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, newByteVar4); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); } /** @@ -707,7 +707,7 @@ public void setByteVar4(byte newByteVar4) { * @generated */ public byte getByteVar5() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); } /** @@ -716,7 +716,7 @@ public byte getByteVar5() { * @generated */ public void setByteVar5(byte newByteVar5) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, newByteVar5); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); } /** @@ -725,7 +725,7 @@ public void setByteVar5(byte newByteVar5) { * @generated */ public short getShortVar1() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); } /** @@ -734,7 +734,7 @@ public short getShortVar1() { * @generated */ public void setShortVar1(short newShortVar1) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, newShortVar1); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); } /** @@ -743,7 +743,7 @@ public void setShortVar1(short newShortVar1) { * @generated */ public short getShortVar2() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); } /** @@ -752,7 +752,7 @@ public short getShortVar2() { * @generated */ public void setShortVar2(short newShortVar2) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, newShortVar2); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); } /** @@ -761,7 +761,7 @@ public void setShortVar2(short newShortVar2) { * @generated */ public short getShortVar3() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); } /** @@ -770,7 +770,7 @@ public short getShortVar3() { * @generated */ public void setShortVar3(short newShortVar3) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, newShortVar3); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); } /** @@ -779,7 +779,7 @@ public void setShortVar3(short newShortVar3) { * @generated */ public short getShortVar4() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); } /** @@ -788,7 +788,7 @@ public short getShortVar4() { * @generated */ public void setShortVar4(short newShortVar4) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, newShortVar4); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); } /** @@ -797,7 +797,7 @@ public void setShortVar4(short newShortVar4) { * @generated */ public short getShortVar5() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); } /** @@ -806,7 +806,7 @@ public short getShortVar5() { * @generated */ public void setShortVar5(short newShortVar5) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, newShortVar5); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); } /** @@ -815,7 +815,7 @@ public void setShortVar5(short newShortVar5) { * @generated */ public int getIntVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); } /** @@ -824,7 +824,7 @@ public int getIntVar1() { * @generated */ public void setIntVar1(int newIntVar1) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, newIntVar1); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); } /** @@ -833,7 +833,7 @@ public void setIntVar1(int newIntVar1) { * @generated */ public int getIntVar2() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); } /** @@ -842,7 +842,7 @@ public int getIntVar2() { * @generated */ public void setIntVar2(int newIntVar2) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, newIntVar2); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); } /** @@ -851,7 +851,7 @@ public void setIntVar2(int newIntVar2) { * @generated */ public int getIntVar3() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); } /** @@ -860,7 +860,7 @@ public int getIntVar3() { * @generated */ public void setIntVar3(int newIntVar3) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, newIntVar3); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); } /** @@ -869,7 +869,7 @@ public void setIntVar3(int newIntVar3) { * @generated */ public int getIntVar4() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); } /** @@ -878,7 +878,7 @@ public int getIntVar4() { * @generated */ public void setIntVar4(int newIntVar4) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, newIntVar4); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); } /** @@ -887,7 +887,7 @@ public void setIntVar4(int newIntVar4) { * @generated */ public int getIntVar5() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); } /** @@ -896,7 +896,7 @@ public int getIntVar5() { * @generated */ public void setIntVar5(int newIntVar5) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, newIntVar5); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); } /** @@ -905,7 +905,7 @@ public void setIntVar5(int newIntVar5) { * @generated */ public char getCharVar1() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); } /** @@ -914,7 +914,7 @@ public char getCharVar1() { * @generated */ public void setCharVar1(char newCharVar1) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, newCharVar1); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); } /** @@ -923,7 +923,7 @@ public void setCharVar1(char newCharVar1) { * @generated */ public char getCharVar2() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); } /** @@ -932,7 +932,7 @@ public char getCharVar2() { * @generated */ public void setCharVar2(char newCharVar2) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, newCharVar2); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); } /** @@ -941,7 +941,7 @@ public void setCharVar2(char newCharVar2) { * @generated */ public char getCharVar3() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); } /** @@ -950,7 +950,7 @@ public char getCharVar3() { * @generated */ public void setCharVar3(char newCharVar3) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, newCharVar3); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); } /** @@ -959,7 +959,7 @@ public void setCharVar3(char newCharVar3) { * @generated */ public char getCharVar4() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); } /** @@ -968,7 +968,7 @@ public char getCharVar4() { * @generated */ public void setCharVar4(char newCharVar4) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, newCharVar4); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); } /** @@ -977,7 +977,7 @@ public void setCharVar4(char newCharVar4) { * @generated */ public char getCharVar5() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); } /** @@ -986,7 +986,7 @@ public char getCharVar5() { * @generated */ public void setCharVar5(char newCharVar5) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, newCharVar5); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); } /** @@ -995,7 +995,7 @@ public void setCharVar5(char newCharVar5) { * @generated */ public long getLongVar1() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); } /** @@ -1004,7 +1004,7 @@ public long getLongVar1() { * @generated */ public void setLongVar1(long newLongVar1) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, newLongVar1); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); } /** @@ -1013,7 +1013,7 @@ public void setLongVar1(long newLongVar1) { * @generated */ public long getLongVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); } /** @@ -1022,7 +1022,7 @@ public long getLongVar2() { * @generated */ public void setLongVar2(long newLongVar2) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, newLongVar2); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); } /** @@ -1031,7 +1031,7 @@ public void setLongVar2(long newLongVar2) { * @generated */ public long getLongVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); } /** @@ -1040,7 +1040,7 @@ public long getLongVar3() { * @generated */ public void setLongVar3(long newLongVar3) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, newLongVar3); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); } /** @@ -1049,7 +1049,7 @@ public void setLongVar3(long newLongVar3) { * @generated */ public long getLongVar4() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); } /** @@ -1058,7 +1058,7 @@ public long getLongVar4() { * @generated */ public void setLongVar4(long newLongVar4) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, newLongVar4); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); } /** @@ -1067,7 +1067,7 @@ public void setLongVar4(long newLongVar4) { * @generated */ public long getLongVar5() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); } /** @@ -1076,7 +1076,7 @@ public long getLongVar5() { * @generated */ public void setLongVar5(long newLongVar5) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, newLongVar5); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); } /** @@ -1085,7 +1085,7 @@ public void setLongVar5(long newLongVar5) { * @generated */ public float getFloatVar1() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); } /** @@ -1094,7 +1094,7 @@ public float getFloatVar1() { * @generated */ public void setFloatVar1(float newFloatVar1) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, newFloatVar1); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); } /** @@ -1103,7 +1103,7 @@ public void setFloatVar1(float newFloatVar1) { * @generated */ public float getFloatVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); } /** @@ -1112,7 +1112,7 @@ public float getFloatVar2() { * @generated */ public void setFloatVar2(float newFloatVar2) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, newFloatVar2); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); } /** @@ -1121,7 +1121,7 @@ public void setFloatVar2(float newFloatVar2) { * @generated */ public float getFloatVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); } /** @@ -1130,7 +1130,7 @@ public float getFloatVar3() { * @generated */ public void setFloatVar3(float newFloatVar3) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, newFloatVar3); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); } /** @@ -1139,7 +1139,7 @@ public void setFloatVar3(float newFloatVar3) { * @generated */ public float getFloatVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); } /** @@ -1148,7 +1148,7 @@ public float getFloatVar4() { * @generated */ public void setFloatVar4(float newFloatVar4) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, newFloatVar4); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); } /** @@ -1157,7 +1157,7 @@ public void setFloatVar4(float newFloatVar4) { * @generated */ public float getFloatVar5() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); } /** @@ -1166,7 +1166,7 @@ public float getFloatVar5() { * @generated */ public void setFloatVar5(float newFloatVar5) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, newFloatVar5); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); } /** @@ -1175,7 +1175,7 @@ public void setFloatVar5(float newFloatVar5) { * @generated */ public double getDoubleVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); } /** @@ -1184,7 +1184,7 @@ public double getDoubleVar1() { * @generated */ public void setDoubleVar1(double newDoubleVar1) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, newDoubleVar1); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); } /** @@ -1193,7 +1193,7 @@ public void setDoubleVar1(double newDoubleVar1) { * @generated */ public double getDoubleVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); } /** @@ -1202,7 +1202,7 @@ public double getDoubleVar2() { * @generated */ public void setDoubleVar2(double newDoubleVar2) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, newDoubleVar2); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); } /** @@ -1211,7 +1211,7 @@ public void setDoubleVar2(double newDoubleVar2) { * @generated */ public double getDoubleVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); } /** @@ -1220,7 +1220,7 @@ public double getDoubleVar3() { * @generated */ public void setDoubleVar3(double newDoubleVar3) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, newDoubleVar3); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); } /** @@ -1229,7 +1229,7 @@ public void setDoubleVar3(double newDoubleVar3) { * @generated */ public double getDoubleVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); } /** @@ -1238,7 +1238,7 @@ public double getDoubleVar4() { * @generated */ public void setDoubleVar4(double newDoubleVar4) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, newDoubleVar4); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); } /** @@ -1247,7 +1247,7 @@ public void setDoubleVar4(double newDoubleVar4) { * @generated */ public double getDoubleVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); } /** @@ -1256,7 +1256,7 @@ public double getDoubleVar5() { * @generated */ public void setDoubleVar5(double newDoubleVar5) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, newDoubleVar5); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); } /** @@ -1265,7 +1265,7 @@ public void setDoubleVar5(double newDoubleVar5) { * @generated */ public boolean isBooleanVar1() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); } /** @@ -1274,7 +1274,7 @@ public boolean isBooleanVar1() { * @generated */ public void setBooleanVar1(boolean newBooleanVar1) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, newBooleanVar1); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); } /** @@ -1283,7 +1283,7 @@ public void setBooleanVar1(boolean newBooleanVar1) { * @generated */ public boolean isBooleanVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); } /** @@ -1292,7 +1292,7 @@ public boolean isBooleanVar2() { * @generated */ public void setBooleanVar2(boolean newBooleanVar2) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, newBooleanVar2); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); } /** @@ -1301,7 +1301,7 @@ public void setBooleanVar2(boolean newBooleanVar2) { * @generated */ public boolean isBooleanVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); } /** @@ -1310,7 +1310,7 @@ public boolean isBooleanVar3() { * @generated */ public void setBooleanVar3(boolean newBooleanVar3) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, newBooleanVar3); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); } /** @@ -1319,7 +1319,7 @@ public void setBooleanVar3(boolean newBooleanVar3) { * @generated */ public boolean isBooleanVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); } /** @@ -1328,7 +1328,7 @@ public boolean isBooleanVar4() { * @generated */ public void setBooleanVar4(boolean newBooleanVar4) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, newBooleanVar4); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); } /** @@ -1337,7 +1337,7 @@ public void setBooleanVar4(boolean newBooleanVar4) { * @generated */ public boolean isBooleanVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); } /** @@ -1346,7 +1346,7 @@ public boolean isBooleanVar5() { * @generated */ public void setBooleanVar5(boolean newBooleanVar5) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, newBooleanVar5); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); } /** @@ -1355,7 +1355,7 @@ public void setBooleanVar5(boolean newBooleanVar5) { * @generated */ public String getStringVar1() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); } /** @@ -1364,7 +1364,7 @@ public String getStringVar1() { * @generated */ public void setStringVar1(String newStringVar1) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, newStringVar1); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); } /** @@ -1373,7 +1373,7 @@ public void setStringVar1(String newStringVar1) { * @generated */ public String getStringVar2() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); } /** @@ -1382,7 +1382,7 @@ public String getStringVar2() { * @generated */ public void setStringVar2(String newStringVar2) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, newStringVar2); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); } /** @@ -1391,7 +1391,7 @@ public void setStringVar2(String newStringVar2) { * @generated */ public String getStringVar3() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); } /** @@ -1400,7 +1400,7 @@ public String getStringVar3() { * @generated */ public void setStringVar3(String newStringVar3) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, newStringVar3); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); } /** @@ -1409,7 +1409,7 @@ public void setStringVar3(String newStringVar3) { * @generated */ public String getStringVar4() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); } /** @@ -1418,7 +1418,7 @@ public String getStringVar4() { * @generated */ public void setStringVar4(String newStringVar4) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, newStringVar4); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); } /** @@ -1427,7 +1427,7 @@ public void setStringVar4(String newStringVar4) { * @generated */ public String getStringVar5() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); } /** @@ -1436,7 +1436,7 @@ public String getStringVar5() { * @generated */ public void setStringVar5(String newStringVar5) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, newStringVar5); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); } /** @@ -1447,7 +1447,7 @@ public void setStringVar5(String newStringVar5) { @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); @@ -1461,101 +1461,101 @@ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested(); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return getId(); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return getContents(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1(); - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2(); - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3(); - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4(); - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5(); - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1(); - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2(); - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3(); - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4(); - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5(); - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1(); - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2(); - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3(); - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4(); - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5(); - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1(); - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2(); - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3(); - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4(); - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5(); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1(); - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2(); - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3(); - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4(); - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5(); - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1(); - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2(); - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3(); - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4(); - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5(); - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1(); - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2(); - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3(); - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4(); - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5(); - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1(); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2(); - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3(); - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4(); - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5(); - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return getStringVar1(); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return getStringVar2(); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return getStringVar3(); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return getStringVar4(); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return getStringVar5(); } return super.eGet(featureID, resolve, coreType); @@ -1570,149 +1570,149 @@ public Object eGet(int featureID, boolean resolve, boolean coreType) { @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested((Boolean)newValue); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId((String)newValue); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); getContents().addAll((Collection)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5((Byte)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5((Short)newValue); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5((Character)newValue); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5((Long)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5((Float)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5((Double)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5((String)newValue); return; } @@ -1727,148 +1727,148 @@ public void eSet(int featureID, Object newValue) { @Override public void eUnset(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested(TESTED_EDEFAULT); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId(ID_EDEFAULT); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1(BYTE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2(BYTE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3(BYTE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4(BYTE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5(BYTE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1(SHORT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2(SHORT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3(SHORT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4(SHORT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5(SHORT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1(INT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2(INT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3(INT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4(INT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5(INT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1(CHAR_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2(CHAR_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3(CHAR_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4(CHAR_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5(CHAR_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1(LONG_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2(LONG_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3(LONG_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4(LONG_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5(LONG_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1(FLOAT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2(FLOAT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3(FLOAT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4(FLOAT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5(FLOAT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1(DOUBLE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2(DOUBLE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3(DOUBLE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4(DOUBLE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5(DOUBLE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1(STRING_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2(STRING_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3(STRING_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4(STRING_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5(STRING_VAR5_EDEFAULT); return; } @@ -1883,101 +1883,101 @@ public void eUnset(int featureID) { @Override public boolean eIsSet(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested() != TESTED_EDEFAULT; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return !getContents().isEmpty(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1() != BYTE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2() != BYTE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3() != BYTE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4() != BYTE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5() != BYTE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1() != SHORT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2() != SHORT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3() != SHORT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4() != SHORT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5() != SHORT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1() != INT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2() != INT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3() != INT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4() != INT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5() != INT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1() != CHAR_VAR1_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2() != CHAR_VAR2_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3() != CHAR_VAR3_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4() != CHAR_VAR4_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5() != CHAR_VAR5_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1() != LONG_VAR1_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2() != LONG_VAR2_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3() != LONG_VAR3_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4() != LONG_VAR4_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5() != LONG_VAR5_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1() != FLOAT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2() != FLOAT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3() != FLOAT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4() != FLOAT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5() != FLOAT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1() != BOOLEAN_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return STRING_VAR1_EDEFAULT == null ? getStringVar1() != null : !STRING_VAR1_EDEFAULT.equals(getStringVar1()); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return STRING_VAR2_EDEFAULT == null ? getStringVar2() != null : !STRING_VAR2_EDEFAULT.equals(getStringVar2()); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return STRING_VAR3_EDEFAULT == null ? getStringVar3() != null : !STRING_VAR3_EDEFAULT.equals(getStringVar3()); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return STRING_VAR4_EDEFAULT == null ? getStringVar4() != null : !STRING_VAR4_EDEFAULT.equals(getStringVar4()); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return STRING_VAR5_EDEFAULT == null ? getStringVar5() != null : !STRING_VAR5_EDEFAULT.equals(getStringVar5()); } return super.eIsSet(featureID); @@ -1992,7 +1992,7 @@ public boolean eIsSet(int featureID) { public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__ID: return BasePackage.IID__ID; + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; default: return -1; } } @@ -2003,7 +2003,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; default: return -1; } } @@ -2019,7 +2019,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == IID.class) { switch (baseFeatureID) { - case BasePackage.IID__ID: return ArtefactPackage.FILE__ID; + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; default: return -1; } } @@ -2030,11 +2030,11 @@ public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (baseFeatureID) { - case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.FILE__CONTENTS; + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } -} //FileImpl +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactAdapterFactory.java index 79a564252..c962c8d0b 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -82,8 +82,8 @@ public Adapter caseDocument(Document object) { return createDocumentAdapter(); } @Override - public Adapter caseFile(File object) { - return createFileAdapter(); + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); } @Override public Adapter caseITestable(ITestable object) { @@ -154,16 +154,16 @@ public Adapter createDocumentAdapter() { } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.objectadded.testmodel.artefact.File File}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.objectadded.testmodel.artefact.Sketch Sketch}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.objectadded.testmodel.artefact.File + * @see com.specmate.migration.test.objectadded.testmodel.artefact.Sketch * @generated */ - public Adapter createFileAdapter() { + public Adapter createSketchAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactSwitch.java index 1423f6a5f..06a96c2b1 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/objectadded/testmodel/artefact/util/ArtefactSwitch.java @@ -94,14 +94,14 @@ protected T doSwitch(int classifierID, EObject theEObject) { if (result == null) result = defaultCase(theEObject); return result; } - case ArtefactPackage.FILE: { - File file = (File)theEObject; - T result = caseFile(file); - if (result == null) result = caseIModifiable(file); - if (result == null) result = caseIContainer(file); - if (result == null) result = caseITestable(file); - if (result == null) result = caseIContentElement(file); - if (result == null) result = caseIID(file); + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseIID(sketch); if (result == null) result = defaultCase(theEObject); return result; } @@ -140,17 +140,17 @@ public T caseDocument(Document object) { } /** - * Returns the result of interpreting the object as an instance of 'File'. + * Returns the result of interpreting the object as an instance of 'Sketch'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'File'. + * @return the result of interpreting the object as an instance of 'Sketch'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseFile(File object) { + public T caseSketch(Sketch object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/ArtefactFactory.java new file mode 100644 index 000000000..0dd48076e --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/ArtefactFactory.java @@ -0,0 +1,51 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact; + +import org.eclipse.emf.ecore.EFactory; + +/** + * + * The Factory for the model. + * It provides a create method for each non-abstract class of the model. + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage + * @generated + */ +public interface ArtefactFactory extends EFactory { + /** + * The singleton instance of the factory. + * + * + * @generated + */ + ArtefactFactory eINSTANCE = com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactFactoryImpl.init(); + + /** + * Returns a new object of class 'Diagram'. + * + * + * @return a new object of class 'Diagram'. + * @generated + */ + Diagram createDiagram(); + + /** + * Returns a new object of class 'Sketch'. + * + * + * @return a new object of class 'Sketch'. + * @generated + */ + Sketch createSketch(); + + /** + * Returns the package supported by this factory. + * + * + * @return the package supported by this factory. + * @generated + */ + ArtefactPackage getArtefactPackage(); + +} //ArtefactFactory diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/ArtefactPackage.java new file mode 100644 index 000000000..6bdedd9c8 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/ArtefactPackage.java @@ -0,0 +1,1496 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact; + +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EPackage; + +/** + * + * The Package for the model. + * It contains accessors for the meta objects to represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each operation of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactFactory + * @model kind="package" + * @generated + */ +public interface ArtefactPackage extends EPackage { + /** + * The package name. + * + * + * @generated + */ + String eNAME = "artefact"; + + /** + * The package namespace URI. + * + * + * @generated + */ + String eNS_URI = "http://specmate.com/1/testmodel/artefact"; + + /** + * The package namespace name. + * + * + * @generated + */ + String eNS_PREFIX = "com.specmate.testmodel.artefact"; + + /** + * The singleton instance of the package. + * + * + * @generated + */ + ArtefactPackage eINSTANCE = com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactPackageImpl.init(); + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl Diagram}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactPackageImpl#getDiagram() + * @generated + */ + int DIAGRAM = 0; + + /** + * The feature id for the 'Tested' attribute. + * + * + * @generated + * @ordered + */ + int DIAGRAM__TESTED = BasePackage.IMODIFIABLE__TESTED; + + /** + * The feature id for the 'Id' attribute. + * + * + * @generated + * @ordered + */ + int DIAGRAM__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Contents' containment reference list. + * + * + * @generated + * @ordered + */ + int DIAGRAM__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + + /** + * The number of structural features of the 'Diagram' class. + * + * + * @generated + * @ordered + */ + int DIAGRAM_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + + /** + * The number of operations of the 'Diagram' class. + * + * + * @generated + * @ordered + */ + int DIAGRAM_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl Sketch}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() + * @generated + */ + int SKETCH = 1; + + /** + * The feature id for the 'Tested' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__TESTED = BasePackage.IMODIFIABLE__TESTED; + + /** + * The feature id for the 'Id' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Contents' containment reference list. + * + * + * @generated + * @ordered + */ + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + + /** + * The feature id for the 'Byte Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + + /** + * The feature id for the 'Byte Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + + /** + * The feature id for the 'Byte Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + + /** + * The feature id for the 'Byte Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + + /** + * The feature id for the 'Byte Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + + /** + * The feature id for the 'Short Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + + /** + * The feature id for the 'Short Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + + /** + * The feature id for the 'Short Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + + /** + * The feature id for the 'Short Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + + /** + * The feature id for the 'Short Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + + /** + * The feature id for the 'Int Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + + /** + * The feature id for the 'Int Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + + /** + * The feature id for the 'Int Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + + /** + * The feature id for the 'Int Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + + /** + * The feature id for the 'Int Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + + /** + * The feature id for the 'Char Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + + /** + * The feature id for the 'Char Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + + /** + * The feature id for the 'Char Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + + /** + * The feature id for the 'Char Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + + /** + * The feature id for the 'Char Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + + /** + * The feature id for the 'Long Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + + /** + * The feature id for the 'Long Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + + /** + * The feature id for the 'Long Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + + /** + * The feature id for the 'Long Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + + /** + * The feature id for the 'Long Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + + /** + * The feature id for the 'Float Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + + /** + * The feature id for the 'Float Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + + /** + * The feature id for the 'Float Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + + /** + * The feature id for the 'Float Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + + /** + * The feature id for the 'Float Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + + /** + * The feature id for the 'Double Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + + /** + * The feature id for the 'Double Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + + /** + * The feature id for the 'Double Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + + /** + * The feature id for the 'Double Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + + /** + * The feature id for the 'Double Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + + /** + * The feature id for the 'Boolean Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + + /** + * The feature id for the 'Boolean Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + + /** + * The feature id for the 'Boolean Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + + /** + * The feature id for the 'Boolean Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + + /** + * The feature id for the 'Boolean Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + + /** + * The feature id for the 'String Var1' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + + /** + * The feature id for the 'String Var2' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + + /** + * The feature id for the 'String Var3' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + + /** + * The feature id for the 'String Var4' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + + /** + * The feature id for the 'String Var5' attribute. + * + * + * @generated + * @ordered + */ + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + + /** + * The number of structural features of the 'Sketch' class. + * + * + * @generated + * @ordered + */ + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + + /** + * The number of operations of the 'Sketch' class. + * + * + * @generated + * @ordered + */ + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram Diagram}'. + * + * + * @return the meta object for class 'Diagram'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram + * @generated + */ + EClass getDiagram(); + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch Sketch}'. + * + * + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch + * @generated + */ + EClass getSketch(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. + * + * + * @return the meta object for the attribute 'Byte Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ByteVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. + * + * + * @return the meta object for the attribute 'Byte Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ByteVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. + * + * + * @return the meta object for the attribute 'Byte Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ByteVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. + * + * + * @return the meta object for the attribute 'Byte Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ByteVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. + * + * + * @return the meta object for the attribute 'Byte Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ByteVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. + * + * + * @return the meta object for the attribute 'Short Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ShortVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. + * + * + * @return the meta object for the attribute 'Short Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ShortVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. + * + * + * @return the meta object for the attribute 'Short Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ShortVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. + * + * + * @return the meta object for the attribute 'Short Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ShortVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. + * + * + * @return the meta object for the attribute 'Short Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_ShortVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. + * + * + * @return the meta object for the attribute 'Int Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_IntVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. + * + * + * @return the meta object for the attribute 'Int Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_IntVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. + * + * + * @return the meta object for the attribute 'Int Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_IntVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. + * + * + * @return the meta object for the attribute 'Int Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_IntVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. + * + * + * @return the meta object for the attribute 'Int Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_IntVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. + * + * + * @return the meta object for the attribute 'Char Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_CharVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. + * + * + * @return the meta object for the attribute 'Char Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_CharVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. + * + * + * @return the meta object for the attribute 'Char Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_CharVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. + * + * + * @return the meta object for the attribute 'Char Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_CharVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. + * + * + * @return the meta object for the attribute 'Char Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_CharVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. + * + * + * @return the meta object for the attribute 'Long Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_LongVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. + * + * + * @return the meta object for the attribute 'Long Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_LongVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. + * + * + * @return the meta object for the attribute 'Long Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_LongVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. + * + * + * @return the meta object for the attribute 'Long Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_LongVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. + * + * + * @return the meta object for the attribute 'Long Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_LongVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. + * + * + * @return the meta object for the attribute 'Float Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_FloatVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. + * + * + * @return the meta object for the attribute 'Float Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_FloatVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. + * + * + * @return the meta object for the attribute 'Float Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_FloatVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. + * + * + * @return the meta object for the attribute 'Float Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_FloatVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. + * + * + * @return the meta object for the attribute 'Float Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_FloatVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. + * + * + * @return the meta object for the attribute 'Double Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_DoubleVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. + * + * + * @return the meta object for the attribute 'Double Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_DoubleVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. + * + * + * @return the meta object for the attribute 'Double Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_DoubleVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. + * + * + * @return the meta object for the attribute 'Double Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_DoubleVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. + * + * + * @return the meta object for the attribute 'Double Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_DoubleVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}'. + * + * + * @return the meta object for the attribute 'Boolean Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_BooleanVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. + * + * + * @return the meta object for the attribute 'Boolean Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_BooleanVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. + * + * + * @return the meta object for the attribute 'Boolean Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_BooleanVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. + * + * + * @return the meta object for the attribute 'Boolean Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_BooleanVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. + * + * + * @return the meta object for the attribute 'Boolean Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_BooleanVar5(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar1 String Var1}'. + * + * + * @return the meta object for the attribute 'String Var1'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar1() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_StringVar1(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar2 String Var2}'. + * + * + * @return the meta object for the attribute 'String Var2'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar2() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_StringVar2(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar3 String Var3}'. + * + * + * @return the meta object for the attribute 'String Var3'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar3() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_StringVar3(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar4 String Var4}'. + * + * + * @return the meta object for the attribute 'String Var4'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar4() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_StringVar4(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar5 String Var5}'. + * + * + * @return the meta object for the attribute 'String Var5'. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar5() + * @see #getSketch() + * @generated + */ + EAttribute getSketch_StringVar5(); + + /** + * Returns the factory that creates the instances of the model. + * + * + * @return the factory that creates the instances of the model. + * @generated + */ + ArtefactFactory getArtefactFactory(); + + /** + * + * Defines literals for the meta objects that represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each operation of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * @generated + */ + interface Literals { + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl Diagram}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactPackageImpl#getDiagram() + * @generated + */ + EClass DIAGRAM = eINSTANCE.getDiagram(); + + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl Sketch}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() + * @generated + */ + EClass SKETCH = eINSTANCE.getSketch(); + + /** + * The meta object literal for the 'Byte Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); + + /** + * The meta object literal for the 'Byte Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); + + /** + * The meta object literal for the 'Byte Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); + + /** + * The meta object literal for the 'Byte Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); + + /** + * The meta object literal for the 'Byte Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); + + /** + * The meta object literal for the 'Short Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); + + /** + * The meta object literal for the 'Short Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); + + /** + * The meta object literal for the 'Short Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); + + /** + * The meta object literal for the 'Short Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); + + /** + * The meta object literal for the 'Short Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); + + /** + * The meta object literal for the 'Int Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); + + /** + * The meta object literal for the 'Int Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); + + /** + * The meta object literal for the 'Int Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); + + /** + * The meta object literal for the 'Int Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); + + /** + * The meta object literal for the 'Int Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); + + /** + * The meta object literal for the 'Char Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); + + /** + * The meta object literal for the 'Char Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); + + /** + * The meta object literal for the 'Char Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); + + /** + * The meta object literal for the 'Char Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); + + /** + * The meta object literal for the 'Char Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); + + /** + * The meta object literal for the 'Long Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); + + /** + * The meta object literal for the 'Long Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); + + /** + * The meta object literal for the 'Long Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); + + /** + * The meta object literal for the 'Long Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); + + /** + * The meta object literal for the 'Long Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); + + /** + * The meta object literal for the 'Float Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); + + /** + * The meta object literal for the 'Float Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); + + /** + * The meta object literal for the 'Float Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); + + /** + * The meta object literal for the 'Float Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); + + /** + * The meta object literal for the 'Float Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); + + /** + * The meta object literal for the 'Double Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); + + /** + * The meta object literal for the 'Double Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); + + /** + * The meta object literal for the 'Double Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); + + /** + * The meta object literal for the 'Double Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); + + /** + * The meta object literal for the 'Double Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); + + /** + * The meta object literal for the 'Boolean Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); + + /** + * The meta object literal for the 'Boolean Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); + + /** + * The meta object literal for the 'Boolean Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); + + /** + * The meta object literal for the 'Boolean Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); + + /** + * The meta object literal for the 'Boolean Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); + + /** + * The meta object literal for the 'String Var1' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); + + /** + * The meta object literal for the 'String Var2' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); + + /** + * The meta object literal for the 'String Var3' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); + + /** + * The meta object literal for the 'String Var4' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); + + /** + * The meta object literal for the 'String Var5' attribute feature. + * + * + * @generated + */ + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); + + } + +} //ArtefactPackage diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/Diagram.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/Diagram.java new file mode 100644 index 000000000..506b47c2a --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/Diagram.java @@ -0,0 +1,19 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact; + +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable; + +/** + * + * A representation of the model object 'Diagram'. + * + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getDiagram() + * @model + * @generated + */ +public interface Diagram extends IModifiable, IContainer { +} // Diagram diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/Sketch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/Sketch.java new file mode 100644 index 000000000..adff4e0bc --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/Sketch.java @@ -0,0 +1,1239 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact; + +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable; + +/** + * + * A representation of the model object 'Sketch'. + * + * + *

+ * The following features are supported: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar5 String Var5}
  • + *
+ * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch() + * @model + * @generated + */ +public interface Sketch extends IModifiable, IContainer { + /** + * Returns the value of the 'Byte Var1' attribute. + * + *

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

+ * + * @return the value of the 'Byte Var1' attribute. + * @see #setByteVar1(byte) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() + * @model + * @generated + */ + byte getByteVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. + * + * + * @param value the new value of the 'Byte Var1' attribute. + * @see #getByteVar1() + * @generated + */ + void setByteVar1(byte value); + + /** + * Returns the value of the 'Byte Var2' attribute. + * + *

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

+ * + * @return the value of the 'Byte Var2' attribute. + * @see #setByteVar2(byte) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() + * @model + * @generated + */ + byte getByteVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. + * + * + * @param value the new value of the 'Byte Var2' attribute. + * @see #getByteVar2() + * @generated + */ + void setByteVar2(byte value); + + /** + * Returns the value of the 'Byte Var3' attribute. + * + *

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

+ * + * @return the value of the 'Byte Var3' attribute. + * @see #setByteVar3(byte) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() + * @model + * @generated + */ + byte getByteVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. + * + * + * @param value the new value of the 'Byte Var3' attribute. + * @see #getByteVar3() + * @generated + */ + void setByteVar3(byte value); + + /** + * Returns the value of the 'Byte Var4' attribute. + * + *

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

+ * + * @return the value of the 'Byte Var4' attribute. + * @see #setByteVar4(byte) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() + * @model + * @generated + */ + byte getByteVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. + * + * + * @param value the new value of the 'Byte Var4' attribute. + * @see #getByteVar4() + * @generated + */ + void setByteVar4(byte value); + + /** + * Returns the value of the 'Byte Var5' attribute. + * + *

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

+ * + * @return the value of the 'Byte Var5' attribute. + * @see #setByteVar5(byte) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() + * @model + * @generated + */ + byte getByteVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. + * + * + * @param value the new value of the 'Byte Var5' attribute. + * @see #getByteVar5() + * @generated + */ + void setByteVar5(byte value); + + /** + * Returns the value of the 'Short Var1' attribute. + * + *

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

+ * + * @return the value of the 'Short Var1' attribute. + * @see #setShortVar1(short) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() + * @model + * @generated + */ + short getShortVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. + * + * + * @param value the new value of the 'Short Var1' attribute. + * @see #getShortVar1() + * @generated + */ + void setShortVar1(short value); + + /** + * Returns the value of the 'Short Var2' attribute. + * + *

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

+ * + * @return the value of the 'Short Var2' attribute. + * @see #setShortVar2(short) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() + * @model + * @generated + */ + short getShortVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. + * + * + * @param value the new value of the 'Short Var2' attribute. + * @see #getShortVar2() + * @generated + */ + void setShortVar2(short value); + + /** + * Returns the value of the 'Short Var3' attribute. + * + *

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

+ * + * @return the value of the 'Short Var3' attribute. + * @see #setShortVar3(short) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() + * @model + * @generated + */ + short getShortVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. + * + * + * @param value the new value of the 'Short Var3' attribute. + * @see #getShortVar3() + * @generated + */ + void setShortVar3(short value); + + /** + * Returns the value of the 'Short Var4' attribute. + * + *

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

+ * + * @return the value of the 'Short Var4' attribute. + * @see #setShortVar4(short) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() + * @model + * @generated + */ + short getShortVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. + * + * + * @param value the new value of the 'Short Var4' attribute. + * @see #getShortVar4() + * @generated + */ + void setShortVar4(short value); + + /** + * Returns the value of the 'Short Var5' attribute. + * + *

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

+ * + * @return the value of the 'Short Var5' attribute. + * @see #setShortVar5(short) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() + * @model + * @generated + */ + short getShortVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. + * + * + * @param value the new value of the 'Short Var5' attribute. + * @see #getShortVar5() + * @generated + */ + void setShortVar5(short value); + + /** + * Returns the value of the 'Int Var1' attribute. + * + *

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

+ * + * @return the value of the 'Int Var1' attribute. + * @see #setIntVar1(int) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() + * @model + * @generated + */ + int getIntVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. + * + * + * @param value the new value of the 'Int Var1' attribute. + * @see #getIntVar1() + * @generated + */ + void setIntVar1(int value); + + /** + * Returns the value of the 'Int Var2' attribute. + * + *

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

+ * + * @return the value of the 'Int Var2' attribute. + * @see #setIntVar2(int) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() + * @model + * @generated + */ + int getIntVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. + * + * + * @param value the new value of the 'Int Var2' attribute. + * @see #getIntVar2() + * @generated + */ + void setIntVar2(int value); + + /** + * Returns the value of the 'Int Var3' attribute. + * + *

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

+ * + * @return the value of the 'Int Var3' attribute. + * @see #setIntVar3(int) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() + * @model + * @generated + */ + int getIntVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. + * + * + * @param value the new value of the 'Int Var3' attribute. + * @see #getIntVar3() + * @generated + */ + void setIntVar3(int value); + + /** + * Returns the value of the 'Int Var4' attribute. + * + *

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

+ * + * @return the value of the 'Int Var4' attribute. + * @see #setIntVar4(int) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() + * @model + * @generated + */ + int getIntVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. + * + * + * @param value the new value of the 'Int Var4' attribute. + * @see #getIntVar4() + * @generated + */ + void setIntVar4(int value); + + /** + * Returns the value of the 'Int Var5' attribute. + * + *

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

+ * + * @return the value of the 'Int Var5' attribute. + * @see #setIntVar5(int) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() + * @model + * @generated + */ + int getIntVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. + * + * + * @param value the new value of the 'Int Var5' attribute. + * @see #getIntVar5() + * @generated + */ + void setIntVar5(int value); + + /** + * Returns the value of the 'Char Var1' attribute. + * + *

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

+ * + * @return the value of the 'Char Var1' attribute. + * @see #setCharVar1(char) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() + * @model + * @generated + */ + char getCharVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. + * + * + * @param value the new value of the 'Char Var1' attribute. + * @see #getCharVar1() + * @generated + */ + void setCharVar1(char value); + + /** + * Returns the value of the 'Char Var2' attribute. + * + *

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

+ * + * @return the value of the 'Char Var2' attribute. + * @see #setCharVar2(char) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() + * @model + * @generated + */ + char getCharVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. + * + * + * @param value the new value of the 'Char Var2' attribute. + * @see #getCharVar2() + * @generated + */ + void setCharVar2(char value); + + /** + * Returns the value of the 'Char Var3' attribute. + * + *

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

+ * + * @return the value of the 'Char Var3' attribute. + * @see #setCharVar3(char) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() + * @model + * @generated + */ + char getCharVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. + * + * + * @param value the new value of the 'Char Var3' attribute. + * @see #getCharVar3() + * @generated + */ + void setCharVar3(char value); + + /** + * Returns the value of the 'Char Var4' attribute. + * + *

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

+ * + * @return the value of the 'Char Var4' attribute. + * @see #setCharVar4(char) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() + * @model + * @generated + */ + char getCharVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. + * + * + * @param value the new value of the 'Char Var4' attribute. + * @see #getCharVar4() + * @generated + */ + void setCharVar4(char value); + + /** + * Returns the value of the 'Char Var5' attribute. + * + *

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

+ * + * @return the value of the 'Char Var5' attribute. + * @see #setCharVar5(char) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() + * @model + * @generated + */ + char getCharVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. + * + * + * @param value the new value of the 'Char Var5' attribute. + * @see #getCharVar5() + * @generated + */ + void setCharVar5(char value); + + /** + * Returns the value of the 'Long Var1' attribute. + * + *

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

+ * + * @return the value of the 'Long Var1' attribute. + * @see #setLongVar1(long) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() + * @model + * @generated + */ + long getLongVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. + * + * + * @param value the new value of the 'Long Var1' attribute. + * @see #getLongVar1() + * @generated + */ + void setLongVar1(long value); + + /** + * Returns the value of the 'Long Var2' attribute. + * + *

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

+ * + * @return the value of the 'Long Var2' attribute. + * @see #setLongVar2(long) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() + * @model + * @generated + */ + long getLongVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. + * + * + * @param value the new value of the 'Long Var2' attribute. + * @see #getLongVar2() + * @generated + */ + void setLongVar2(long value); + + /** + * Returns the value of the 'Long Var3' attribute. + * + *

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

+ * + * @return the value of the 'Long Var3' attribute. + * @see #setLongVar3(long) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() + * @model + * @generated + */ + long getLongVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. + * + * + * @param value the new value of the 'Long Var3' attribute. + * @see #getLongVar3() + * @generated + */ + void setLongVar3(long value); + + /** + * Returns the value of the 'Long Var4' attribute. + * + *

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

+ * + * @return the value of the 'Long Var4' attribute. + * @see #setLongVar4(long) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() + * @model + * @generated + */ + long getLongVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. + * + * + * @param value the new value of the 'Long Var4' attribute. + * @see #getLongVar4() + * @generated + */ + void setLongVar4(long value); + + /** + * Returns the value of the 'Long Var5' attribute. + * + *

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

+ * + * @return the value of the 'Long Var5' attribute. + * @see #setLongVar5(long) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() + * @model + * @generated + */ + long getLongVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. + * + * + * @param value the new value of the 'Long Var5' attribute. + * @see #getLongVar5() + * @generated + */ + void setLongVar5(long value); + + /** + * Returns the value of the 'Float Var1' attribute. + * + *

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

+ * + * @return the value of the 'Float Var1' attribute. + * @see #setFloatVar1(float) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() + * @model + * @generated + */ + float getFloatVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. + * + * + * @param value the new value of the 'Float Var1' attribute. + * @see #getFloatVar1() + * @generated + */ + void setFloatVar1(float value); + + /** + * Returns the value of the 'Float Var2' attribute. + * + *

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

+ * + * @return the value of the 'Float Var2' attribute. + * @see #setFloatVar2(float) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() + * @model + * @generated + */ + float getFloatVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. + * + * + * @param value the new value of the 'Float Var2' attribute. + * @see #getFloatVar2() + * @generated + */ + void setFloatVar2(float value); + + /** + * Returns the value of the 'Float Var3' attribute. + * + *

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

+ * + * @return the value of the 'Float Var3' attribute. + * @see #setFloatVar3(float) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() + * @model + * @generated + */ + float getFloatVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. + * + * + * @param value the new value of the 'Float Var3' attribute. + * @see #getFloatVar3() + * @generated + */ + void setFloatVar3(float value); + + /** + * Returns the value of the 'Float Var4' attribute. + * + *

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

+ * + * @return the value of the 'Float Var4' attribute. + * @see #setFloatVar4(float) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() + * @model + * @generated + */ + float getFloatVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. + * + * + * @param value the new value of the 'Float Var4' attribute. + * @see #getFloatVar4() + * @generated + */ + void setFloatVar4(float value); + + /** + * Returns the value of the 'Float Var5' attribute. + * + *

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

+ * + * @return the value of the 'Float Var5' attribute. + * @see #setFloatVar5(float) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() + * @model + * @generated + */ + float getFloatVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. + * + * + * @param value the new value of the 'Float Var5' attribute. + * @see #getFloatVar5() + * @generated + */ + void setFloatVar5(float value); + + /** + * Returns the value of the 'Double Var1' attribute. + * + *

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

+ * + * @return the value of the 'Double Var1' attribute. + * @see #setDoubleVar1(double) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() + * @model + * @generated + */ + double getDoubleVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. + * + * + * @param value the new value of the 'Double Var1' attribute. + * @see #getDoubleVar1() + * @generated + */ + void setDoubleVar1(double value); + + /** + * Returns the value of the 'Double Var2' attribute. + * + *

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

+ * + * @return the value of the 'Double Var2' attribute. + * @see #setDoubleVar2(double) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() + * @model + * @generated + */ + double getDoubleVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. + * + * + * @param value the new value of the 'Double Var2' attribute. + * @see #getDoubleVar2() + * @generated + */ + void setDoubleVar2(double value); + + /** + * Returns the value of the 'Double Var3' attribute. + * + *

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

+ * + * @return the value of the 'Double Var3' attribute. + * @see #setDoubleVar3(double) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() + * @model + * @generated + */ + double getDoubleVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. + * + * + * @param value the new value of the 'Double Var3' attribute. + * @see #getDoubleVar3() + * @generated + */ + void setDoubleVar3(double value); + + /** + * Returns the value of the 'Double Var4' attribute. + * + *

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

+ * + * @return the value of the 'Double Var4' attribute. + * @see #setDoubleVar4(double) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() + * @model + * @generated + */ + double getDoubleVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. + * + * + * @param value the new value of the 'Double Var4' attribute. + * @see #getDoubleVar4() + * @generated + */ + void setDoubleVar4(double value); + + /** + * Returns the value of the 'Double Var5' attribute. + * + *

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

+ * + * @return the value of the 'Double Var5' attribute. + * @see #setDoubleVar5(double) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() + * @model + * @generated + */ + double getDoubleVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. + * + * + * @param value the new value of the 'Double Var5' attribute. + * @see #getDoubleVar5() + * @generated + */ + void setDoubleVar5(double value); + + /** + * Returns the value of the 'Boolean Var1' attribute. + * + *

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

+ * + * @return the value of the 'Boolean Var1' attribute. + * @see #setBooleanVar1(boolean) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() + * @model + * @generated + */ + boolean isBooleanVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}' attribute. + * + * + * @param value the new value of the 'Boolean Var1' attribute. + * @see #isBooleanVar1() + * @generated + */ + void setBooleanVar1(boolean value); + + /** + * Returns the value of the 'Boolean Var2' attribute. + * + *

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

+ * + * @return the value of the 'Boolean Var2' attribute. + * @see #setBooleanVar2(boolean) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() + * @model + * @generated + */ + boolean isBooleanVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. + * + * + * @param value the new value of the 'Boolean Var2' attribute. + * @see #isBooleanVar2() + * @generated + */ + void setBooleanVar2(boolean value); + + /** + * Returns the value of the 'Boolean Var3' attribute. + * + *

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

+ * + * @return the value of the 'Boolean Var3' attribute. + * @see #setBooleanVar3(boolean) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() + * @model + * @generated + */ + boolean isBooleanVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. + * + * + * @param value the new value of the 'Boolean Var3' attribute. + * @see #isBooleanVar3() + * @generated + */ + void setBooleanVar3(boolean value); + + /** + * Returns the value of the 'Boolean Var4' attribute. + * + *

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

+ * + * @return the value of the 'Boolean Var4' attribute. + * @see #setBooleanVar4(boolean) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() + * @model + * @generated + */ + boolean isBooleanVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. + * + * + * @param value the new value of the 'Boolean Var4' attribute. + * @see #isBooleanVar4() + * @generated + */ + void setBooleanVar4(boolean value); + + /** + * Returns the value of the 'Boolean Var5' attribute. + * + *

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

+ * + * @return the value of the 'Boolean Var5' attribute. + * @see #setBooleanVar5(boolean) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() + * @model + * @generated + */ + boolean isBooleanVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. + * + * + * @param value the new value of the 'Boolean Var5' attribute. + * @see #isBooleanVar5() + * @generated + */ + void setBooleanVar5(boolean value); + + /** + * Returns the value of the 'String Var1' attribute. + * + *

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

+ * + * @return the value of the 'String Var1' attribute. + * @see #setStringVar1(String) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() + * @model + * @generated + */ + String getStringVar1(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar1 String Var1}' attribute. + * + * + * @param value the new value of the 'String Var1' attribute. + * @see #getStringVar1() + * @generated + */ + void setStringVar1(String value); + + /** + * Returns the value of the 'String Var2' attribute. + * + *

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

+ * + * @return the value of the 'String Var2' attribute. + * @see #setStringVar2(String) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() + * @model + * @generated + */ + String getStringVar2(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar2 String Var2}' attribute. + * + * + * @param value the new value of the 'String Var2' attribute. + * @see #getStringVar2() + * @generated + */ + void setStringVar2(String value); + + /** + * Returns the value of the 'String Var3' attribute. + * + *

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

+ * + * @return the value of the 'String Var3' attribute. + * @see #setStringVar3(String) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() + * @model + * @generated + */ + String getStringVar3(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar3 String Var3}' attribute. + * + * + * @param value the new value of the 'String Var3' attribute. + * @see #getStringVar3() + * @generated + */ + void setStringVar3(String value); + + /** + * Returns the value of the 'String Var4' attribute. + * + *

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

+ * + * @return the value of the 'String Var4' attribute. + * @see #setStringVar4(String) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() + * @model + * @generated + */ + String getStringVar4(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar4 String Var4}' attribute. + * + * + * @param value the new value of the 'String Var4' attribute. + * @see #getStringVar4() + * @generated + */ + void setStringVar4(String value); + + /** + * Returns the value of the 'String Var5' attribute. + * + *

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

+ * + * @return the value of the 'String Var5' attribute. + * @see #setStringVar5(String) + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() + * @model + * @generated + */ + String getStringVar5(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch#getStringVar5 String Var5}' attribute. + * + * + * @param value the new value of the 'String Var5' attribute. + * @see #getStringVar5() + * @generated + */ + void setStringVar5(String value); + +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/ArtefactFactoryImpl.java new file mode 100644 index 000000000..ddf32e077 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -0,0 +1,106 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.*; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.impl.EFactoryImpl; + +import org.eclipse.emf.ecore.plugin.EcorePlugin; + +/** + * + * An implementation of the model Factory. + * + * @generated + */ +public class ArtefactFactoryImpl extends EFactoryImpl implements ArtefactFactory { + /** + * Creates the default factory implementation. + * + * + * @generated + */ + public static ArtefactFactory init() { + try { + ArtefactFactory theArtefactFactory = (ArtefactFactory)EPackage.Registry.INSTANCE.getEFactory(ArtefactPackage.eNS_URI); + if (theArtefactFactory != null) { + return theArtefactFactory; + } + } + catch (Exception exception) { + EcorePlugin.INSTANCE.log(exception); + } + return new ArtefactFactoryImpl(); + } + + /** + * Creates an instance of the factory. + * + * + * @generated + */ + public ArtefactFactoryImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + public EObject create(EClass eClass) { + switch (eClass.getClassifierID()) { + case ArtefactPackage.DIAGRAM: return createDiagram(); + case ArtefactPackage.SKETCH: return createSketch(); + default: + throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); + } + } + + /** + * + * + * @generated + */ + public Diagram createDiagram() { + DiagramImpl diagram = new DiagramImpl(); + return diagram; + } + + /** + * + * + * @generated + */ + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; + } + + /** + * + * + * @generated + */ + public ArtefactPackage getArtefactPackage() { + return (ArtefactPackage)getEPackage(); + } + + /** + * + * + * @deprecated + * @generated + */ + @Deprecated + public static ArtefactPackage getPackage() { + return ArtefactPackage.eINSTANCE; + } + +} //ArtefactFactoryImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/ArtefactPackageImpl.java new file mode 100644 index 000000000..597e1e9d4 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -0,0 +1,698 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactFactory; +import com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage; +import com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram; +import com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch; + +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; + +import com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.impl.EPackageImpl; + +/** + * + * An implementation of the model Package. + * + * @generated + */ +public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage { + /** + * + * + * @generated + */ + private EClass diagramEClass = null; + + /** + * + * + * @generated + */ + private EClass sketchEClass = null; + + /** + * Creates an instance of the model Package, registered with + * {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the package + * package URI value. + *

Note: the correct way to create the package is via the static + * factory method {@link #init init()}, which also performs + * initialization of the package, or returns the registered package, + * if one already exists. + * + * + * @see org.eclipse.emf.ecore.EPackage.Registry + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage#eNS_URI + * @see #init() + * @generated + */ + private ArtefactPackageImpl() { + super(eNS_URI, ArtefactFactory.eINSTANCE); + } + + /** + * + * + * @generated + */ + private static boolean isInited = false; + + /** + * Creates, registers, and initializes the Package for this model, and for any others upon which it depends. + * + *

This method is used to initialize {@link ArtefactPackage#eINSTANCE} when that field is accessed. + * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. + * + * + * @see #eNS_URI + * @see #createPackageContents() + * @see #initializePackageContents() + * @generated + */ + public static ArtefactPackage init() { + if (isInited) return (ArtefactPackage)EPackage.Registry.INSTANCE.getEPackage(ArtefactPackage.eNS_URI); + + // Obtain or create and register package + ArtefactPackageImpl theArtefactPackage = (ArtefactPackageImpl)(EPackage.Registry.INSTANCE.get(eNS_URI) instanceof ArtefactPackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) : new ArtefactPackageImpl()); + + isInited = true; + + // Obtain or create and register interdependencies + BasePackageImpl theBasePackage = (BasePackageImpl)(EPackage.Registry.INSTANCE.getEPackage(BasePackage.eNS_URI) instanceof BasePackageImpl ? EPackage.Registry.INSTANCE.getEPackage(BasePackage.eNS_URI) : BasePackage.eINSTANCE); + + // Create package meta-data objects + theArtefactPackage.createPackageContents(); + theBasePackage.createPackageContents(); + + // Initialize created meta-data + theArtefactPackage.initializePackageContents(); + theBasePackage.initializePackageContents(); + + // Mark meta-data to indicate it can't be changed + theArtefactPackage.freeze(); + + + // Update the registry and return the package + EPackage.Registry.INSTANCE.put(ArtefactPackage.eNS_URI, theArtefactPackage); + return theArtefactPackage; + } + + /** + * + * + * @generated + */ + public EClass getDiagram() { + return diagramEClass; + } + + /** + * + * + * @generated + */ + public EClass getSketch() { + return sketchEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); + } + + /** + * + * + * @generated + */ + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); + } + + /** + * + * + * @generated + */ + public ArtefactFactory getArtefactFactory() { + return (ArtefactFactory)getEFactoryInstance(); + } + + /** + * + * + * @generated + */ + private boolean isCreated = false; + + /** + * Creates the meta-model objects for the package. This method is + * guarded to have no affect on any invocation but its first. + * + * + * @generated + */ + public void createPackageContents() { + if (isCreated) return; + isCreated = true; + + // Create classes and their features + diagramEClass = createEClass(DIAGRAM); + + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); + } + + /** + * + * + * @generated + */ + private boolean isInitialized = false; + + /** + * Complete the initialization of the package and its meta-model. This + * method is guarded to have no affect on any invocation but its first. + * + * + * @generated + */ + public void initializePackageContents() { + if (isInitialized) return; + isInitialized = true; + + // Initialize package + setName(eNAME); + setNsPrefix(eNS_PREFIX); + setNsURI(eNS_URI); + + // Obtain other dependent packages + BasePackage theBasePackage = (BasePackage)EPackage.Registry.INSTANCE.getEPackage(BasePackage.eNS_URI); + + // Create type parameters + + // Set bounds for type parameters + + // Add supertypes to classes + diagramEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); + + // Initialize classes, features, and operations; add parameters + initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + // Create resource + createResource(eNS_URI); + } + +} //ArtefactPackageImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/DiagramImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/DiagramImpl.java new file mode 100644 index 000000000..81d769de4 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/DiagramImpl.java @@ -0,0 +1,285 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage; +import com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram; + +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement; +import com.specmate.migration.test.onlymetachange.testmodel.base.IID; + +import java.util.Collection; + +import org.eclipse.emf.common.notify.NotificationChain; + +import org.eclipse.emf.common.util.EList; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.InternalEObject; + +import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; + +import org.eclipse.emf.ecore.util.InternalEList; + +/** + * + * An implementation of the model object 'Diagram'. + * + *

+ * The following features are implemented: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.DiagramImpl#getContents Contents}
  • + *
+ * + * @generated + */ +public class DiagramImpl extends MinimalEObjectImpl.Container implements Diagram { + /** + * The default value of the '{@link #isTested() Tested}' attribute. + * + * + * @see #isTested() + * @generated + * @ordered + */ + protected static final boolean TESTED_EDEFAULT = false; + + /** + * The default value of the '{@link #getId() Id}' attribute. + * + * + * @see #getId() + * @generated + * @ordered + */ + protected static final String ID_EDEFAULT = null; + + /** + * + * + * @generated + */ + protected DiagramImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return ArtefactPackage.Literals.DIAGRAM; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() { + return 0; + } + + /** + * + * + * @generated + */ + public boolean isTested() { + return (Boolean)eDynamicGet(ArtefactPackage.DIAGRAM__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + } + + /** + * + * + * @generated + */ + public void setTested(boolean newTested) { + eDynamicSet(ArtefactPackage.DIAGRAM__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + } + + /** + * + * + * @generated + */ + public String getId() { + return (String)eDynamicGet(ArtefactPackage.DIAGRAM__ID, BasePackage.Literals.IID__ID, true, true); + } + + /** + * + * + * @generated + */ + public void setId(String newId) { + eDynamicSet(ArtefactPackage.DIAGRAM__ID, BasePackage.Literals.IID__ID, newId); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getContents() { + return (EList)eDynamicGet(ArtefactPackage.DIAGRAM__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + } + + /** + * + * + * @generated + */ + @Override + public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { + switch (featureID) { + case ArtefactPackage.DIAGRAM__CONTENTS: + return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); + } + return super.eInverseRemove(otherEnd, featureID, msgs); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case ArtefactPackage.DIAGRAM__TESTED: + return isTested(); + case ArtefactPackage.DIAGRAM__ID: + return getId(); + case ArtefactPackage.DIAGRAM__CONTENTS: + return getContents(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case ArtefactPackage.DIAGRAM__TESTED: + setTested((Boolean)newValue); + return; + case ArtefactPackage.DIAGRAM__ID: + setId((String)newValue); + return; + case ArtefactPackage.DIAGRAM__CONTENTS: + getContents().clear(); + getContents().addAll((Collection)newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case ArtefactPackage.DIAGRAM__TESTED: + setTested(TESTED_EDEFAULT); + return; + case ArtefactPackage.DIAGRAM__ID: + setId(ID_EDEFAULT); + return; + case ArtefactPackage.DIAGRAM__CONTENTS: + getContents().clear(); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case ArtefactPackage.DIAGRAM__TESTED: + return isTested() != TESTED_EDEFAULT; + case ArtefactPackage.DIAGRAM__ID: + return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); + case ArtefactPackage.DIAGRAM__CONTENTS: + return !getContents().isEmpty(); + } + return super.eIsSet(featureID); + } + + /** + * + * + * @generated + */ + @Override + public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { + if (baseClass == IID.class) { + switch (derivedFeatureID) { + case ArtefactPackage.DIAGRAM__ID: return BasePackage.IID__ID; + default: return -1; + } + } + if (baseClass == IContentElement.class) { + switch (derivedFeatureID) { + default: return -1; + } + } + if (baseClass == IContainer.class) { + switch (derivedFeatureID) { + case ArtefactPackage.DIAGRAM__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + default: return -1; + } + } + return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass); + } + + /** + * + * + * @generated + */ + @Override + public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { + if (baseClass == IID.class) { + switch (baseFeatureID) { + case BasePackage.IID__ID: return ArtefactPackage.DIAGRAM__ID; + default: return -1; + } + } + if (baseClass == IContentElement.class) { + switch (baseFeatureID) { + default: return -1; + } + } + if (baseClass == IContainer.class) { + switch (baseFeatureID) { + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.DIAGRAM__CONTENTS; + default: return -1; + } + } + return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); + } + +} //DiagramImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/SketchImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/SketchImpl.java new file mode 100644 index 000000000..9bd37e010 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/impl/SketchImpl.java @@ -0,0 +1,2040 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage; +import com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch; + +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement; +import com.specmate.migration.test.onlymetachange.testmodel.base.IID; + +import java.util.Collection; + +import org.eclipse.emf.common.notify.NotificationChain; + +import org.eclipse.emf.common.util.EList; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.InternalEObject; + +import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; + +import org.eclipse.emf.ecore.util.InternalEList; + +/** + * + * An implementation of the model object 'Sketch'. + * + *

+ * The following features are implemented: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.SketchImpl#getStringVar5 String Var5}
  • + *
+ * + * @generated + */ +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { + /** + * The default value of the '{@link #isTested() Tested}' attribute. + * + * + * @see #isTested() + * @generated + * @ordered + */ + protected static final boolean TESTED_EDEFAULT = false; + + /** + * The default value of the '{@link #getId() Id}' attribute. + * + * + * @see #getId() + * @generated + * @ordered + */ + protected static final String ID_EDEFAULT = null; + + /** + * The default value of the '{@link #getByteVar1() Byte Var1}' attribute. + * + * + * @see #getByteVar1() + * @generated + * @ordered + */ + protected static final byte BYTE_VAR1_EDEFAULT = 0x00; + + /** + * The default value of the '{@link #getByteVar2() Byte Var2}' attribute. + * + * + * @see #getByteVar2() + * @generated + * @ordered + */ + protected static final byte BYTE_VAR2_EDEFAULT = 0x00; + + /** + * The default value of the '{@link #getByteVar3() Byte Var3}' attribute. + * + * + * @see #getByteVar3() + * @generated + * @ordered + */ + protected static final byte BYTE_VAR3_EDEFAULT = 0x00; + + /** + * The default value of the '{@link #getByteVar4() Byte Var4}' attribute. + * + * + * @see #getByteVar4() + * @generated + * @ordered + */ + protected static final byte BYTE_VAR4_EDEFAULT = 0x00; + + /** + * The default value of the '{@link #getByteVar5() Byte Var5}' attribute. + * + * + * @see #getByteVar5() + * @generated + * @ordered + */ + protected static final byte BYTE_VAR5_EDEFAULT = 0x00; + + /** + * The default value of the '{@link #getShortVar1() Short Var1}' attribute. + * + * + * @see #getShortVar1() + * @generated + * @ordered + */ + protected static final short SHORT_VAR1_EDEFAULT = 0; + + /** + * The default value of the '{@link #getShortVar2() Short Var2}' attribute. + * + * + * @see #getShortVar2() + * @generated + * @ordered + */ + protected static final short SHORT_VAR2_EDEFAULT = 0; + + /** + * The default value of the '{@link #getShortVar3() Short Var3}' attribute. + * + * + * @see #getShortVar3() + * @generated + * @ordered + */ + protected static final short SHORT_VAR3_EDEFAULT = 0; + + /** + * The default value of the '{@link #getShortVar4() Short Var4}' attribute. + * + * + * @see #getShortVar4() + * @generated + * @ordered + */ + protected static final short SHORT_VAR4_EDEFAULT = 0; + + /** + * The default value of the '{@link #getShortVar5() Short Var5}' attribute. + * + * + * @see #getShortVar5() + * @generated + * @ordered + */ + protected static final short SHORT_VAR5_EDEFAULT = 0; + + /** + * The default value of the '{@link #getIntVar1() Int Var1}' attribute. + * + * + * @see #getIntVar1() + * @generated + * @ordered + */ + protected static final int INT_VAR1_EDEFAULT = 0; + + /** + * The default value of the '{@link #getIntVar2() Int Var2}' attribute. + * + * + * @see #getIntVar2() + * @generated + * @ordered + */ + protected static final int INT_VAR2_EDEFAULT = 0; + + /** + * The default value of the '{@link #getIntVar3() Int Var3}' attribute. + * + * + * @see #getIntVar3() + * @generated + * @ordered + */ + protected static final int INT_VAR3_EDEFAULT = 0; + + /** + * The default value of the '{@link #getIntVar4() Int Var4}' attribute. + * + * + * @see #getIntVar4() + * @generated + * @ordered + */ + protected static final int INT_VAR4_EDEFAULT = 0; + + /** + * The default value of the '{@link #getIntVar5() Int Var5}' attribute. + * + * + * @see #getIntVar5() + * @generated + * @ordered + */ + protected static final int INT_VAR5_EDEFAULT = 0; + + /** + * The default value of the '{@link #getCharVar1() Char Var1}' attribute. + * + * + * @see #getCharVar1() + * @generated + * @ordered + */ + protected static final char CHAR_VAR1_EDEFAULT = '\u0000'; + + /** + * The default value of the '{@link #getCharVar2() Char Var2}' attribute. + * + * + * @see #getCharVar2() + * @generated + * @ordered + */ + protected static final char CHAR_VAR2_EDEFAULT = '\u0000'; + + /** + * The default value of the '{@link #getCharVar3() Char Var3}' attribute. + * + * + * @see #getCharVar3() + * @generated + * @ordered + */ + protected static final char CHAR_VAR3_EDEFAULT = '\u0000'; + + /** + * The default value of the '{@link #getCharVar4() Char Var4}' attribute. + * + * + * @see #getCharVar4() + * @generated + * @ordered + */ + protected static final char CHAR_VAR4_EDEFAULT = '\u0000'; + + /** + * The default value of the '{@link #getCharVar5() Char Var5}' attribute. + * + * + * @see #getCharVar5() + * @generated + * @ordered + */ + protected static final char CHAR_VAR5_EDEFAULT = '\u0000'; + + /** + * The default value of the '{@link #getLongVar1() Long Var1}' attribute. + * + * + * @see #getLongVar1() + * @generated + * @ordered + */ + protected static final long LONG_VAR1_EDEFAULT = 0L; + + /** + * The default value of the '{@link #getLongVar2() Long Var2}' attribute. + * + * + * @see #getLongVar2() + * @generated + * @ordered + */ + protected static final long LONG_VAR2_EDEFAULT = 0L; + + /** + * The default value of the '{@link #getLongVar3() Long Var3}' attribute. + * + * + * @see #getLongVar3() + * @generated + * @ordered + */ + protected static final long LONG_VAR3_EDEFAULT = 0L; + + /** + * The default value of the '{@link #getLongVar4() Long Var4}' attribute. + * + * + * @see #getLongVar4() + * @generated + * @ordered + */ + protected static final long LONG_VAR4_EDEFAULT = 0L; + + /** + * The default value of the '{@link #getLongVar5() Long Var5}' attribute. + * + * + * @see #getLongVar5() + * @generated + * @ordered + */ + protected static final long LONG_VAR5_EDEFAULT = 0L; + + /** + * The default value of the '{@link #getFloatVar1() Float Var1}' attribute. + * + * + * @see #getFloatVar1() + * @generated + * @ordered + */ + protected static final float FLOAT_VAR1_EDEFAULT = 0.0F; + + /** + * The default value of the '{@link #getFloatVar2() Float Var2}' attribute. + * + * + * @see #getFloatVar2() + * @generated + * @ordered + */ + protected static final float FLOAT_VAR2_EDEFAULT = 0.0F; + + /** + * The default value of the '{@link #getFloatVar3() Float Var3}' attribute. + * + * + * @see #getFloatVar3() + * @generated + * @ordered + */ + protected static final float FLOAT_VAR3_EDEFAULT = 0.0F; + + /** + * The default value of the '{@link #getFloatVar4() Float Var4}' attribute. + * + * + * @see #getFloatVar4() + * @generated + * @ordered + */ + protected static final float FLOAT_VAR4_EDEFAULT = 0.0F; + + /** + * The default value of the '{@link #getFloatVar5() Float Var5}' attribute. + * + * + * @see #getFloatVar5() + * @generated + * @ordered + */ + protected static final float FLOAT_VAR5_EDEFAULT = 0.0F; + + /** + * The default value of the '{@link #getDoubleVar1() Double Var1}' attribute. + * + * + * @see #getDoubleVar1() + * @generated + * @ordered + */ + protected static final double DOUBLE_VAR1_EDEFAULT = 0.0; + + /** + * The default value of the '{@link #getDoubleVar2() Double Var2}' attribute. + * + * + * @see #getDoubleVar2() + * @generated + * @ordered + */ + protected static final double DOUBLE_VAR2_EDEFAULT = 0.0; + + /** + * The default value of the '{@link #getDoubleVar3() Double Var3}' attribute. + * + * + * @see #getDoubleVar3() + * @generated + * @ordered + */ + protected static final double DOUBLE_VAR3_EDEFAULT = 0.0; + + /** + * The default value of the '{@link #getDoubleVar4() Double Var4}' attribute. + * + * + * @see #getDoubleVar4() + * @generated + * @ordered + */ + protected static final double DOUBLE_VAR4_EDEFAULT = 0.0; + + /** + * The default value of the '{@link #getDoubleVar5() Double Var5}' attribute. + * + * + * @see #getDoubleVar5() + * @generated + * @ordered + */ + protected static final double DOUBLE_VAR5_EDEFAULT = 0.0; + + /** + * The default value of the '{@link #isBooleanVar1() Boolean Var1}' attribute. + * + * + * @see #isBooleanVar1() + * @generated + * @ordered + */ + protected static final boolean BOOLEAN_VAR1_EDEFAULT = false; + + /** + * The default value of the '{@link #isBooleanVar2() Boolean Var2}' attribute. + * + * + * @see #isBooleanVar2() + * @generated + * @ordered + */ + protected static final boolean BOOLEAN_VAR2_EDEFAULT = false; + + /** + * The default value of the '{@link #isBooleanVar3() Boolean Var3}' attribute. + * + * + * @see #isBooleanVar3() + * @generated + * @ordered + */ + protected static final boolean BOOLEAN_VAR3_EDEFAULT = false; + + /** + * The default value of the '{@link #isBooleanVar4() Boolean Var4}' attribute. + * + * + * @see #isBooleanVar4() + * @generated + * @ordered + */ + protected static final boolean BOOLEAN_VAR4_EDEFAULT = false; + + /** + * The default value of the '{@link #isBooleanVar5() Boolean Var5}' attribute. + * + * + * @see #isBooleanVar5() + * @generated + * @ordered + */ + protected static final boolean BOOLEAN_VAR5_EDEFAULT = false; + + /** + * The default value of the '{@link #getStringVar1() String Var1}' attribute. + * + * + * @see #getStringVar1() + * @generated + * @ordered + */ + protected static final String STRING_VAR1_EDEFAULT = null; + + /** + * The default value of the '{@link #getStringVar2() String Var2}' attribute. + * + * + * @see #getStringVar2() + * @generated + * @ordered + */ + protected static final String STRING_VAR2_EDEFAULT = null; + + /** + * The default value of the '{@link #getStringVar3() String Var3}' attribute. + * + * + * @see #getStringVar3() + * @generated + * @ordered + */ + protected static final String STRING_VAR3_EDEFAULT = null; + + /** + * The default value of the '{@link #getStringVar4() String Var4}' attribute. + * + * + * @see #getStringVar4() + * @generated + * @ordered + */ + protected static final String STRING_VAR4_EDEFAULT = null; + + /** + * The default value of the '{@link #getStringVar5() String Var5}' attribute. + * + * + * @see #getStringVar5() + * @generated + * @ordered + */ + protected static final String STRING_VAR5_EDEFAULT = null; + + /** + * + * + * @generated + */ + protected SketchImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return ArtefactPackage.Literals.SKETCH; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() { + return 0; + } + + /** + * + * + * @generated + */ + public boolean isTested() { + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + } + + /** + * + * + * @generated + */ + public void setTested(boolean newTested) { + eDynamicSet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + } + + /** + * + * + * @generated + */ + public String getId() { + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); + } + + /** + * + * + * @generated + */ + public void setId(String newId) { + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getContents() { + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + } + + /** + * + * + * @generated + */ + public byte getByteVar1() { + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setByteVar1(byte newByteVar1) { + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); + } + + /** + * + * + * @generated + */ + public byte getByteVar2() { + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setByteVar2(byte newByteVar2) { + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); + } + + /** + * + * + * @generated + */ + public byte getByteVar3() { + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setByteVar3(byte newByteVar3) { + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); + } + + /** + * + * + * @generated + */ + public byte getByteVar4() { + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setByteVar4(byte newByteVar4) { + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); + } + + /** + * + * + * @generated + */ + public byte getByteVar5() { + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setByteVar5(byte newByteVar5) { + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); + } + + /** + * + * + * @generated + */ + public short getShortVar1() { + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setShortVar1(short newShortVar1) { + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); + } + + /** + * + * + * @generated + */ + public short getShortVar2() { + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setShortVar2(short newShortVar2) { + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); + } + + /** + * + * + * @generated + */ + public short getShortVar3() { + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setShortVar3(short newShortVar3) { + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); + } + + /** + * + * + * @generated + */ + public short getShortVar4() { + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setShortVar4(short newShortVar4) { + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); + } + + /** + * + * + * @generated + */ + public short getShortVar5() { + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setShortVar5(short newShortVar5) { + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); + } + + /** + * + * + * @generated + */ + public int getIntVar1() { + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setIntVar1(int newIntVar1) { + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); + } + + /** + * + * + * @generated + */ + public int getIntVar2() { + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setIntVar2(int newIntVar2) { + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); + } + + /** + * + * + * @generated + */ + public int getIntVar3() { + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setIntVar3(int newIntVar3) { + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); + } + + /** + * + * + * @generated + */ + public int getIntVar4() { + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setIntVar4(int newIntVar4) { + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); + } + + /** + * + * + * @generated + */ + public int getIntVar5() { + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setIntVar5(int newIntVar5) { + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); + } + + /** + * + * + * @generated + */ + public char getCharVar1() { + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setCharVar1(char newCharVar1) { + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); + } + + /** + * + * + * @generated + */ + public char getCharVar2() { + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setCharVar2(char newCharVar2) { + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); + } + + /** + * + * + * @generated + */ + public char getCharVar3() { + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setCharVar3(char newCharVar3) { + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); + } + + /** + * + * + * @generated + */ + public char getCharVar4() { + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setCharVar4(char newCharVar4) { + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); + } + + /** + * + * + * @generated + */ + public char getCharVar5() { + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setCharVar5(char newCharVar5) { + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); + } + + /** + * + * + * @generated + */ + public long getLongVar1() { + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setLongVar1(long newLongVar1) { + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); + } + + /** + * + * + * @generated + */ + public long getLongVar2() { + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setLongVar2(long newLongVar2) { + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); + } + + /** + * + * + * @generated + */ + public long getLongVar3() { + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setLongVar3(long newLongVar3) { + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); + } + + /** + * + * + * @generated + */ + public long getLongVar4() { + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setLongVar4(long newLongVar4) { + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); + } + + /** + * + * + * @generated + */ + public long getLongVar5() { + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setLongVar5(long newLongVar5) { + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); + } + + /** + * + * + * @generated + */ + public float getFloatVar1() { + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setFloatVar1(float newFloatVar1) { + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); + } + + /** + * + * + * @generated + */ + public float getFloatVar2() { + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setFloatVar2(float newFloatVar2) { + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); + } + + /** + * + * + * @generated + */ + public float getFloatVar3() { + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setFloatVar3(float newFloatVar3) { + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); + } + + /** + * + * + * @generated + */ + public float getFloatVar4() { + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setFloatVar4(float newFloatVar4) { + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); + } + + /** + * + * + * @generated + */ + public float getFloatVar5() { + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setFloatVar5(float newFloatVar5) { + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); + } + + /** + * + * + * @generated + */ + public double getDoubleVar1() { + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setDoubleVar1(double newDoubleVar1) { + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); + } + + /** + * + * + * @generated + */ + public double getDoubleVar2() { + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setDoubleVar2(double newDoubleVar2) { + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); + } + + /** + * + * + * @generated + */ + public double getDoubleVar3() { + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setDoubleVar3(double newDoubleVar3) { + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); + } + + /** + * + * + * @generated + */ + public double getDoubleVar4() { + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setDoubleVar4(double newDoubleVar4) { + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); + } + + /** + * + * + * @generated + */ + public double getDoubleVar5() { + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setDoubleVar5(double newDoubleVar5) { + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); + } + + /** + * + * + * @generated + */ + public boolean isBooleanVar1() { + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setBooleanVar1(boolean newBooleanVar1) { + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); + } + + /** + * + * + * @generated + */ + public boolean isBooleanVar2() { + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setBooleanVar2(boolean newBooleanVar2) { + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); + } + + /** + * + * + * @generated + */ + public boolean isBooleanVar3() { + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setBooleanVar3(boolean newBooleanVar3) { + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); + } + + /** + * + * + * @generated + */ + public boolean isBooleanVar4() { + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setBooleanVar4(boolean newBooleanVar4) { + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); + } + + /** + * + * + * @generated + */ + public boolean isBooleanVar5() { + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setBooleanVar5(boolean newBooleanVar5) { + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); + } + + /** + * + * + * @generated + */ + public String getStringVar1() { + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); + } + + /** + * + * + * @generated + */ + public void setStringVar1(String newStringVar1) { + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); + } + + /** + * + * + * @generated + */ + public String getStringVar2() { + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); + } + + /** + * + * + * @generated + */ + public void setStringVar2(String newStringVar2) { + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); + } + + /** + * + * + * @generated + */ + public String getStringVar3() { + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); + } + + /** + * + * + * @generated + */ + public void setStringVar3(String newStringVar3) { + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); + } + + /** + * + * + * @generated + */ + public String getStringVar4() { + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); + } + + /** + * + * + * @generated + */ + public void setStringVar4(String newStringVar4) { + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); + } + + /** + * + * + * @generated + */ + public String getStringVar5() { + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); + } + + /** + * + * + * @generated + */ + public void setStringVar5(String newStringVar5) { + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); + } + + /** + * + * + * @generated + */ + @Override + public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { + switch (featureID) { + case ArtefactPackage.SKETCH__CONTENTS: + return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); + } + return super.eInverseRemove(otherEnd, featureID, msgs); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case ArtefactPackage.SKETCH__TESTED: + return isTested(); + case ArtefactPackage.SKETCH__ID: + return getId(); + case ArtefactPackage.SKETCH__CONTENTS: + return getContents(); + case ArtefactPackage.SKETCH__BYTE_VAR1: + return getByteVar1(); + case ArtefactPackage.SKETCH__BYTE_VAR2: + return getByteVar2(); + case ArtefactPackage.SKETCH__BYTE_VAR3: + return getByteVar3(); + case ArtefactPackage.SKETCH__BYTE_VAR4: + return getByteVar4(); + case ArtefactPackage.SKETCH__BYTE_VAR5: + return getByteVar5(); + case ArtefactPackage.SKETCH__SHORT_VAR1: + return getShortVar1(); + case ArtefactPackage.SKETCH__SHORT_VAR2: + return getShortVar2(); + case ArtefactPackage.SKETCH__SHORT_VAR3: + return getShortVar3(); + case ArtefactPackage.SKETCH__SHORT_VAR4: + return getShortVar4(); + case ArtefactPackage.SKETCH__SHORT_VAR5: + return getShortVar5(); + case ArtefactPackage.SKETCH__INT_VAR1: + return getIntVar1(); + case ArtefactPackage.SKETCH__INT_VAR2: + return getIntVar2(); + case ArtefactPackage.SKETCH__INT_VAR3: + return getIntVar3(); + case ArtefactPackage.SKETCH__INT_VAR4: + return getIntVar4(); + case ArtefactPackage.SKETCH__INT_VAR5: + return getIntVar5(); + case ArtefactPackage.SKETCH__CHAR_VAR1: + return getCharVar1(); + case ArtefactPackage.SKETCH__CHAR_VAR2: + return getCharVar2(); + case ArtefactPackage.SKETCH__CHAR_VAR3: + return getCharVar3(); + case ArtefactPackage.SKETCH__CHAR_VAR4: + return getCharVar4(); + case ArtefactPackage.SKETCH__CHAR_VAR5: + return getCharVar5(); + case ArtefactPackage.SKETCH__LONG_VAR1: + return getLongVar1(); + case ArtefactPackage.SKETCH__LONG_VAR2: + return getLongVar2(); + case ArtefactPackage.SKETCH__LONG_VAR3: + return getLongVar3(); + case ArtefactPackage.SKETCH__LONG_VAR4: + return getLongVar4(); + case ArtefactPackage.SKETCH__LONG_VAR5: + return getLongVar5(); + case ArtefactPackage.SKETCH__FLOAT_VAR1: + return getFloatVar1(); + case ArtefactPackage.SKETCH__FLOAT_VAR2: + return getFloatVar2(); + case ArtefactPackage.SKETCH__FLOAT_VAR3: + return getFloatVar3(); + case ArtefactPackage.SKETCH__FLOAT_VAR4: + return getFloatVar4(); + case ArtefactPackage.SKETCH__FLOAT_VAR5: + return getFloatVar5(); + case ArtefactPackage.SKETCH__DOUBLE_VAR1: + return getDoubleVar1(); + case ArtefactPackage.SKETCH__DOUBLE_VAR2: + return getDoubleVar2(); + case ArtefactPackage.SKETCH__DOUBLE_VAR3: + return getDoubleVar3(); + case ArtefactPackage.SKETCH__DOUBLE_VAR4: + return getDoubleVar4(); + case ArtefactPackage.SKETCH__DOUBLE_VAR5: + return getDoubleVar5(); + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: + return isBooleanVar1(); + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: + return isBooleanVar2(); + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: + return isBooleanVar3(); + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: + return isBooleanVar4(); + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: + return isBooleanVar5(); + case ArtefactPackage.SKETCH__STRING_VAR1: + return getStringVar1(); + case ArtefactPackage.SKETCH__STRING_VAR2: + return getStringVar2(); + case ArtefactPackage.SKETCH__STRING_VAR3: + return getStringVar3(); + case ArtefactPackage.SKETCH__STRING_VAR4: + return getStringVar4(); + case ArtefactPackage.SKETCH__STRING_VAR5: + return getStringVar5(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case ArtefactPackage.SKETCH__TESTED: + setTested((Boolean)newValue); + return; + case ArtefactPackage.SKETCH__ID: + setId((String)newValue); + return; + case ArtefactPackage.SKETCH__CONTENTS: + getContents().clear(); + getContents().addAll((Collection)newValue); + return; + case ArtefactPackage.SKETCH__BYTE_VAR1: + setByteVar1((Byte)newValue); + return; + case ArtefactPackage.SKETCH__BYTE_VAR2: + setByteVar2((Byte)newValue); + return; + case ArtefactPackage.SKETCH__BYTE_VAR3: + setByteVar3((Byte)newValue); + return; + case ArtefactPackage.SKETCH__BYTE_VAR4: + setByteVar4((Byte)newValue); + return; + case ArtefactPackage.SKETCH__BYTE_VAR5: + setByteVar5((Byte)newValue); + return; + case ArtefactPackage.SKETCH__SHORT_VAR1: + setShortVar1((Short)newValue); + return; + case ArtefactPackage.SKETCH__SHORT_VAR2: + setShortVar2((Short)newValue); + return; + case ArtefactPackage.SKETCH__SHORT_VAR3: + setShortVar3((Short)newValue); + return; + case ArtefactPackage.SKETCH__SHORT_VAR4: + setShortVar4((Short)newValue); + return; + case ArtefactPackage.SKETCH__SHORT_VAR5: + setShortVar5((Short)newValue); + return; + case ArtefactPackage.SKETCH__INT_VAR1: + setIntVar1((Integer)newValue); + return; + case ArtefactPackage.SKETCH__INT_VAR2: + setIntVar2((Integer)newValue); + return; + case ArtefactPackage.SKETCH__INT_VAR3: + setIntVar3((Integer)newValue); + return; + case ArtefactPackage.SKETCH__INT_VAR4: + setIntVar4((Integer)newValue); + return; + case ArtefactPackage.SKETCH__INT_VAR5: + setIntVar5((Integer)newValue); + return; + case ArtefactPackage.SKETCH__CHAR_VAR1: + setCharVar1((Character)newValue); + return; + case ArtefactPackage.SKETCH__CHAR_VAR2: + setCharVar2((Character)newValue); + return; + case ArtefactPackage.SKETCH__CHAR_VAR3: + setCharVar3((Character)newValue); + return; + case ArtefactPackage.SKETCH__CHAR_VAR4: + setCharVar4((Character)newValue); + return; + case ArtefactPackage.SKETCH__CHAR_VAR5: + setCharVar5((Character)newValue); + return; + case ArtefactPackage.SKETCH__LONG_VAR1: + setLongVar1((Long)newValue); + return; + case ArtefactPackage.SKETCH__LONG_VAR2: + setLongVar2((Long)newValue); + return; + case ArtefactPackage.SKETCH__LONG_VAR3: + setLongVar3((Long)newValue); + return; + case ArtefactPackage.SKETCH__LONG_VAR4: + setLongVar4((Long)newValue); + return; + case ArtefactPackage.SKETCH__LONG_VAR5: + setLongVar5((Long)newValue); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR1: + setFloatVar1((Float)newValue); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR2: + setFloatVar2((Float)newValue); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR3: + setFloatVar3((Float)newValue); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR4: + setFloatVar4((Float)newValue); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR5: + setFloatVar5((Float)newValue); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR1: + setDoubleVar1((Double)newValue); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR2: + setDoubleVar2((Double)newValue); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR3: + setDoubleVar3((Double)newValue); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR4: + setDoubleVar4((Double)newValue); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR5: + setDoubleVar5((Double)newValue); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: + setBooleanVar1((Boolean)newValue); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: + setBooleanVar2((Boolean)newValue); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: + setBooleanVar3((Boolean)newValue); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: + setBooleanVar4((Boolean)newValue); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: + setBooleanVar5((Boolean)newValue); + return; + case ArtefactPackage.SKETCH__STRING_VAR1: + setStringVar1((String)newValue); + return; + case ArtefactPackage.SKETCH__STRING_VAR2: + setStringVar2((String)newValue); + return; + case ArtefactPackage.SKETCH__STRING_VAR3: + setStringVar3((String)newValue); + return; + case ArtefactPackage.SKETCH__STRING_VAR4: + setStringVar4((String)newValue); + return; + case ArtefactPackage.SKETCH__STRING_VAR5: + setStringVar5((String)newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case ArtefactPackage.SKETCH__TESTED: + setTested(TESTED_EDEFAULT); + return; + case ArtefactPackage.SKETCH__ID: + setId(ID_EDEFAULT); + return; + case ArtefactPackage.SKETCH__CONTENTS: + getContents().clear(); + return; + case ArtefactPackage.SKETCH__BYTE_VAR1: + setByteVar1(BYTE_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BYTE_VAR2: + setByteVar2(BYTE_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BYTE_VAR3: + setByteVar3(BYTE_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BYTE_VAR4: + setByteVar4(BYTE_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BYTE_VAR5: + setByteVar5(BYTE_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__SHORT_VAR1: + setShortVar1(SHORT_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__SHORT_VAR2: + setShortVar2(SHORT_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__SHORT_VAR3: + setShortVar3(SHORT_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__SHORT_VAR4: + setShortVar4(SHORT_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__SHORT_VAR5: + setShortVar5(SHORT_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__INT_VAR1: + setIntVar1(INT_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__INT_VAR2: + setIntVar2(INT_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__INT_VAR3: + setIntVar3(INT_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__INT_VAR4: + setIntVar4(INT_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__INT_VAR5: + setIntVar5(INT_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__CHAR_VAR1: + setCharVar1(CHAR_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__CHAR_VAR2: + setCharVar2(CHAR_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__CHAR_VAR3: + setCharVar3(CHAR_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__CHAR_VAR4: + setCharVar4(CHAR_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__CHAR_VAR5: + setCharVar5(CHAR_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__LONG_VAR1: + setLongVar1(LONG_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__LONG_VAR2: + setLongVar2(LONG_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__LONG_VAR3: + setLongVar3(LONG_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__LONG_VAR4: + setLongVar4(LONG_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__LONG_VAR5: + setLongVar5(LONG_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR1: + setFloatVar1(FLOAT_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR2: + setFloatVar2(FLOAT_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR3: + setFloatVar3(FLOAT_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR4: + setFloatVar4(FLOAT_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__FLOAT_VAR5: + setFloatVar5(FLOAT_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR1: + setDoubleVar1(DOUBLE_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR2: + setDoubleVar2(DOUBLE_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR3: + setDoubleVar3(DOUBLE_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR4: + setDoubleVar4(DOUBLE_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__DOUBLE_VAR5: + setDoubleVar5(DOUBLE_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: + setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: + setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: + setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: + setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: + setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); + return; + case ArtefactPackage.SKETCH__STRING_VAR1: + setStringVar1(STRING_VAR1_EDEFAULT); + return; + case ArtefactPackage.SKETCH__STRING_VAR2: + setStringVar2(STRING_VAR2_EDEFAULT); + return; + case ArtefactPackage.SKETCH__STRING_VAR3: + setStringVar3(STRING_VAR3_EDEFAULT); + return; + case ArtefactPackage.SKETCH__STRING_VAR4: + setStringVar4(STRING_VAR4_EDEFAULT); + return; + case ArtefactPackage.SKETCH__STRING_VAR5: + setStringVar5(STRING_VAR5_EDEFAULT); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case ArtefactPackage.SKETCH__TESTED: + return isTested() != TESTED_EDEFAULT; + case ArtefactPackage.SKETCH__ID: + return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); + case ArtefactPackage.SKETCH__CONTENTS: + return !getContents().isEmpty(); + case ArtefactPackage.SKETCH__BYTE_VAR1: + return getByteVar1() != BYTE_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__BYTE_VAR2: + return getByteVar2() != BYTE_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__BYTE_VAR3: + return getByteVar3() != BYTE_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__BYTE_VAR4: + return getByteVar4() != BYTE_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__BYTE_VAR5: + return getByteVar5() != BYTE_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__SHORT_VAR1: + return getShortVar1() != SHORT_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__SHORT_VAR2: + return getShortVar2() != SHORT_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__SHORT_VAR3: + return getShortVar3() != SHORT_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__SHORT_VAR4: + return getShortVar4() != SHORT_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__SHORT_VAR5: + return getShortVar5() != SHORT_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__INT_VAR1: + return getIntVar1() != INT_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__INT_VAR2: + return getIntVar2() != INT_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__INT_VAR3: + return getIntVar3() != INT_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__INT_VAR4: + return getIntVar4() != INT_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__INT_VAR5: + return getIntVar5() != INT_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__CHAR_VAR1: + return getCharVar1() != CHAR_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__CHAR_VAR2: + return getCharVar2() != CHAR_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__CHAR_VAR3: + return getCharVar3() != CHAR_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__CHAR_VAR4: + return getCharVar4() != CHAR_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__CHAR_VAR5: + return getCharVar5() != CHAR_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__LONG_VAR1: + return getLongVar1() != LONG_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__LONG_VAR2: + return getLongVar2() != LONG_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__LONG_VAR3: + return getLongVar3() != LONG_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__LONG_VAR4: + return getLongVar4() != LONG_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__LONG_VAR5: + return getLongVar5() != LONG_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__FLOAT_VAR1: + return getFloatVar1() != FLOAT_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__FLOAT_VAR2: + return getFloatVar2() != FLOAT_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__FLOAT_VAR3: + return getFloatVar3() != FLOAT_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__FLOAT_VAR4: + return getFloatVar4() != FLOAT_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__FLOAT_VAR5: + return getFloatVar5() != FLOAT_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__DOUBLE_VAR1: + return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__DOUBLE_VAR2: + return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__DOUBLE_VAR3: + return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__DOUBLE_VAR4: + return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__DOUBLE_VAR5: + return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: + return isBooleanVar1() != BOOLEAN_VAR1_EDEFAULT; + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: + return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: + return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: + return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: + return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; + case ArtefactPackage.SKETCH__STRING_VAR1: + return STRING_VAR1_EDEFAULT == null ? getStringVar1() != null : !STRING_VAR1_EDEFAULT.equals(getStringVar1()); + case ArtefactPackage.SKETCH__STRING_VAR2: + return STRING_VAR2_EDEFAULT == null ? getStringVar2() != null : !STRING_VAR2_EDEFAULT.equals(getStringVar2()); + case ArtefactPackage.SKETCH__STRING_VAR3: + return STRING_VAR3_EDEFAULT == null ? getStringVar3() != null : !STRING_VAR3_EDEFAULT.equals(getStringVar3()); + case ArtefactPackage.SKETCH__STRING_VAR4: + return STRING_VAR4_EDEFAULT == null ? getStringVar4() != null : !STRING_VAR4_EDEFAULT.equals(getStringVar4()); + case ArtefactPackage.SKETCH__STRING_VAR5: + return STRING_VAR5_EDEFAULT == null ? getStringVar5() != null : !STRING_VAR5_EDEFAULT.equals(getStringVar5()); + } + return super.eIsSet(featureID); + } + + /** + * + * + * @generated + */ + @Override + public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { + if (baseClass == IID.class) { + switch (derivedFeatureID) { + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; + default: return -1; + } + } + if (baseClass == IContentElement.class) { + switch (derivedFeatureID) { + default: return -1; + } + } + if (baseClass == IContainer.class) { + switch (derivedFeatureID) { + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + default: return -1; + } + } + return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass); + } + + /** + * + * + * @generated + */ + @Override + public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { + if (baseClass == IID.class) { + switch (baseFeatureID) { + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; + default: return -1; + } + } + if (baseClass == IContentElement.class) { + switch (baseFeatureID) { + default: return -1; + } + } + if (baseClass == IContainer.class) { + switch (baseFeatureID) { + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; + default: return -1; + } + } + return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); + } + +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/util/ArtefactAdapterFactory.java new file mode 100644 index 000000000..4f053c46f --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -0,0 +1,234 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact.util; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.*; + +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement; +import com.specmate.migration.test.onlymetachange.testmodel.base.IID; +import com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable; +import com.specmate.migration.test.onlymetachange.testmodel.base.ITestable; + +import org.eclipse.emf.common.notify.Adapter; +import org.eclipse.emf.common.notify.Notifier; + +import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * The Adapter Factory for the model. + * It provides an adapter createXXX method for each class of the model. + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage + * @generated + */ +public class ArtefactAdapterFactory extends AdapterFactoryImpl { + /** + * The cached model package. + * + * + * @generated + */ + protected static ArtefactPackage modelPackage; + + /** + * Creates an instance of the adapter factory. + * + * + * @generated + */ + public ArtefactAdapterFactory() { + if (modelPackage == null) { + modelPackage = ArtefactPackage.eINSTANCE; + } + } + + /** + * Returns whether this factory is applicable for the type of the object. + * + * This implementation returns true if the object is either the model's package or is an instance object of the model. + * + * @return whether this factory is applicable for the type of the object. + * @generated + */ + @Override + public boolean isFactoryForType(Object object) { + if (object == modelPackage) { + return true; + } + if (object instanceof EObject) { + return ((EObject)object).eClass().getEPackage() == modelPackage; + } + return false; + } + + /** + * The switch that delegates to the createXXX methods. + * + * + * @generated + */ + protected ArtefactSwitch modelSwitch = + new ArtefactSwitch() { + @Override + public Adapter caseDiagram(Diagram object) { + return createDiagramAdapter(); + } + @Override + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); + } + @Override + public Adapter caseITestable(ITestable object) { + return createITestableAdapter(); + } + @Override + public Adapter caseIModifiable(IModifiable object) { + return createIModifiableAdapter(); + } + @Override + public Adapter caseIID(IID object) { + return createIIDAdapter(); + } + @Override + public Adapter caseIContentElement(IContentElement object) { + return createIContentElementAdapter(); + } + @Override + public Adapter caseIContainer(IContainer object) { + return createIContainerAdapter(); + } + @Override + public Adapter defaultCase(EObject object) { + return createEObjectAdapter(); + } + }; + + /** + * Creates an adapter for the target. + * + * + * @param target the object to adapt. + * @return the adapter for the target. + * @generated + */ + @Override + public Adapter createAdapter(Notifier target) { + return modelSwitch.doSwitch((EObject)target); + } + + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram Diagram}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Diagram + * @generated + */ + public Adapter createDiagramAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch Sketch}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.Sketch + * @generated + */ + public Adapter createSketchAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable ITestable}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.ITestable + * @generated + */ + public Adapter createITestableAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable IModifiable}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable + * @generated + */ + public Adapter createIModifiableAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID IID}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IID + * @generated + */ + public Adapter createIIDAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement IContent Element}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement + * @generated + */ + public Adapter createIContentElementAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer IContainer}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContainer + * @generated + */ + public Adapter createIContainerAdapter() { + return null; + } + + /** + * Creates a new adapter for the default case. + * + * This default implementation returns null. + * + * @return the new adapter. + * @generated + */ + public Adapter createEObjectAdapter() { + return null; + } + +} //ArtefactAdapterFactory diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/util/ArtefactSwitch.java new file mode 100644 index 000000000..8f958bf18 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/artefact/util/ArtefactSwitch.java @@ -0,0 +1,222 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.artefact.util; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.*; + +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement; +import com.specmate.migration.test.onlymetachange.testmodel.base.IID; +import com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable; +import com.specmate.migration.test.onlymetachange.testmodel.base.ITestable; + +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.util.Switch; + +/** + * + * The Switch for the model's inheritance hierarchy. + * It supports the call {@link #doSwitch(EObject) doSwitch(object)} + * to invoke the caseXXX method for each class of the model, + * starting with the actual class of the object + * and proceeding up the inheritance hierarchy + * until a non-null result is returned, + * which is the result of the switch. + * + * @see com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage + * @generated + */ +public class ArtefactSwitch extends Switch { + /** + * The cached model package + * + * + * @generated + */ + protected static ArtefactPackage modelPackage; + + /** + * Creates an instance of the switch. + * + * + * @generated + */ + public ArtefactSwitch() { + if (modelPackage == null) { + modelPackage = ArtefactPackage.eINSTANCE; + } + } + + /** + * Checks whether this is a switch for the given package. + * + * + * @param ePackage the package in question. + * @return whether this is a switch for the given package. + * @generated + */ + @Override + protected boolean isSwitchFor(EPackage ePackage) { + return ePackage == modelPackage; + } + + /** + * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + * + * + * @return the first non-null result returned by a caseXXX call. + * @generated + */ + @Override + protected T doSwitch(int classifierID, EObject theEObject) { + switch (classifierID) { + case ArtefactPackage.DIAGRAM: { + Diagram diagram = (Diagram)theEObject; + T result = caseDiagram(diagram); + if (result == null) result = caseIModifiable(diagram); + if (result == null) result = caseIContainer(diagram); + if (result == null) result = caseITestable(diagram); + if (result == null) result = caseIContentElement(diagram); + if (result == null) result = caseIID(diagram); + if (result == null) result = defaultCase(theEObject); + return result; + } + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseIID(sketch); + if (result == null) result = defaultCase(theEObject); + return result; + } + default: return defaultCase(theEObject); + } + } + + /** + * Returns the result of interpreting the object as an instance of 'Diagram'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'Diagram'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseDiagram(Diagram object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Sketch'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'Sketch'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseSketch(Sketch object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'ITestable'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'ITestable'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseITestable(ITestable object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IModifiable'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IModifiable'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIModifiable(IModifiable object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IID'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IID'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIID(IID object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IContent Element'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IContent Element'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIContentElement(IContentElement object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IContainer'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IContainer'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIContainer(IContainer object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'EObject'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch, but this is the last case anyway. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'EObject'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) + * @generated + */ + @Override + public T defaultCase(EObject object) { + return null; + } + +} //ArtefactSwitch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/BaseFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/BaseFactory.java new file mode 100644 index 000000000..e83db0268 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/BaseFactory.java @@ -0,0 +1,42 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + +import org.eclipse.emf.ecore.EFactory; + +/** + * + * The Factory for the model. + * It provides a create method for each non-abstract class of the model. + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage + * @generated + */ +public interface BaseFactory extends EFactory { + /** + * The singleton instance of the factory. + * + * + * @generated + */ + BaseFactory eINSTANCE = com.specmate.migration.test.onlymetachange.testmodel.base.impl.BaseFactoryImpl.init(); + + /** + * Returns a new object of class 'Folder'. + * + * + * @return a new object of class 'Folder'. + * @generated + */ + Folder createFolder(); + + /** + * Returns the package supported by this factory. + * + * + * @return the package supported by this factory. + * @generated + */ + BasePackage getBasePackage(); + +} //BaseFactory diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/BasePackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/BasePackage.java new file mode 100644 index 000000000..b2555e587 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/BasePackage.java @@ -0,0 +1,502 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EPackage; +import org.eclipse.emf.ecore.EReference; + +/** + * + * The Package for the model. + * It contains accessors for the meta objects to represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each operation of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BaseFactory + * @model kind="package" + * @generated + */ +public interface BasePackage extends EPackage { + /** + * The package name. + * + * + * @generated + */ + String eNAME = "base"; + + /** + * The package namespace URI. + * + * + * @generated + */ + String eNS_URI = "http://specmate.com/1/testmodel/base"; + + /** + * The package namespace name. + * + * + * @generated + */ + String eNS_PREFIX = "com.specmate.testmodel.base"; + + /** + * The singleton instance of the package. + * + * + * @generated + */ + BasePackage eINSTANCE = com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl.init(); + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID IID}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IID + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIID() + * @generated + */ + int IID = 0; + + /** + * The feature id for the 'Id' attribute. + * + * + * @generated + * @ordered + */ + int IID__ID = 0; + + /** + * The number of structural features of the 'IID' class. + * + * + * @generated + * @ordered + */ + int IID_FEATURE_COUNT = 1; + + /** + * The number of operations of the 'IID' class. + * + * + * @generated + * @ordered + */ + int IID_OPERATION_COUNT = 0; + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement IContent Element}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIContentElement() + * @generated + */ + int ICONTENT_ELEMENT = 1; + + /** + * The feature id for the 'Id' attribute. + * + * + * @generated + * @ordered + */ + int ICONTENT_ELEMENT__ID = IID__ID; + + /** + * The number of structural features of the 'IContent Element' class. + * + * + * @generated + * @ordered + */ + int ICONTENT_ELEMENT_FEATURE_COUNT = IID_FEATURE_COUNT + 0; + + /** + * The number of operations of the 'IContent Element' class. + * + * + * @generated + * @ordered + */ + int ICONTENT_ELEMENT_OPERATION_COUNT = IID_OPERATION_COUNT + 0; + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer IContainer}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContainer + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIContainer() + * @generated + */ + int ICONTAINER = 2; + + /** + * The feature id for the 'Id' attribute. + * + * + * @generated + * @ordered + */ + int ICONTAINER__ID = ICONTENT_ELEMENT__ID; + + /** + * The feature id for the 'Contents' containment reference list. + * + * + * @generated + * @ordered + */ + int ICONTAINER__CONTENTS = ICONTENT_ELEMENT_FEATURE_COUNT + 0; + + /** + * The number of structural features of the 'IContainer' class. + * + * + * @generated + * @ordered + */ + int ICONTAINER_FEATURE_COUNT = ICONTENT_ELEMENT_FEATURE_COUNT + 1; + + /** + * The number of operations of the 'IContainer' class. + * + * + * @generated + * @ordered + */ + int ICONTAINER_OPERATION_COUNT = ICONTENT_ELEMENT_OPERATION_COUNT + 0; + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.impl.FolderImpl Folder}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.FolderImpl + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getFolder() + * @generated + */ + int FOLDER = 3; + + /** + * The feature id for the 'Id' attribute. + * + * + * @generated + * @ordered + */ + int FOLDER__ID = ICONTAINER__ID; + + /** + * The feature id for the 'Contents' containment reference list. + * + * + * @generated + * @ordered + */ + int FOLDER__CONTENTS = ICONTAINER__CONTENTS; + + /** + * The number of structural features of the 'Folder' class. + * + * + * @generated + * @ordered + */ + int FOLDER_FEATURE_COUNT = ICONTAINER_FEATURE_COUNT + 0; + + /** + * The number of operations of the 'Folder' class. + * + * + * @generated + * @ordered + */ + int FOLDER_OPERATION_COUNT = ICONTAINER_OPERATION_COUNT + 0; + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable ITestable}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.ITestable + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getITestable() + * @generated + */ + int ITESTABLE = 4; + + /** + * The feature id for the 'Tested' attribute. + * + * + * @generated + * @ordered + */ + int ITESTABLE__TESTED = 0; + + /** + * The number of structural features of the 'ITestable' class. + * + * + * @generated + * @ordered + */ + int ITESTABLE_FEATURE_COUNT = 1; + + /** + * The number of operations of the 'ITestable' class. + * + * + * @generated + * @ordered + */ + int ITESTABLE_OPERATION_COUNT = 0; + + /** + * The meta object id for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable IModifiable}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIModifiable() + * @generated + */ + int IMODIFIABLE = 5; + + /** + * The feature id for the 'Tested' attribute. + * + * + * @generated + * @ordered + */ + int IMODIFIABLE__TESTED = ITESTABLE__TESTED; + + /** + * The number of structural features of the 'IModifiable' class. + * + * + * @generated + * @ordered + */ + int IMODIFIABLE_FEATURE_COUNT = ITESTABLE_FEATURE_COUNT + 0; + + /** + * The number of operations of the 'IModifiable' class. + * + * + * @generated + * @ordered + */ + int IMODIFIABLE_OPERATION_COUNT = ITESTABLE_OPERATION_COUNT + 0; + + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID IID}'. + * + * + * @return the meta object for class 'IID'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IID + * @generated + */ + EClass getIID(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID#getId Id}'. + * + * + * @return the meta object for the attribute 'Id'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IID#getId() + * @see #getIID() + * @generated + */ + EAttribute getIID_Id(); + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement IContent Element}'. + * + * + * @return the meta object for class 'IContent Element'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement + * @generated + */ + EClass getIContentElement(); + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer IContainer}'. + * + * + * @return the meta object for class 'IContainer'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContainer + * @generated + */ + EClass getIContainer(); + + /** + * Returns the meta object for the containment reference list '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer#getContents Contents}'. + * + * + * @return the meta object for the containment reference list 'Contents'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContainer#getContents() + * @see #getIContainer() + * @generated + */ + EReference getIContainer_Contents(); + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.Folder Folder}'. + * + * + * @return the meta object for class 'Folder'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.Folder + * @generated + */ + EClass getFolder(); + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable ITestable}'. + * + * + * @return the meta object for class 'ITestable'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.ITestable + * @generated + */ + EClass getITestable(); + + /** + * Returns the meta object for the attribute '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable#isTested Tested}'. + * + * + * @return the meta object for the attribute 'Tested'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.ITestable#isTested() + * @see #getITestable() + * @generated + */ + EAttribute getITestable_Tested(); + + /** + * Returns the meta object for class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable IModifiable}'. + * + * + * @return the meta object for class 'IModifiable'. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable + * @generated + */ + EClass getIModifiable(); + + /** + * Returns the factory that creates the instances of the model. + * + * + * @return the factory that creates the instances of the model. + * @generated + */ + BaseFactory getBaseFactory(); + + /** + * + * Defines literals for the meta objects that represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each operation of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * @generated + */ + interface Literals { + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID IID}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IID + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIID() + * @generated + */ + EClass IID = eINSTANCE.getIID(); + + /** + * The meta object literal for the 'Id' attribute feature. + * + * + * @generated + */ + EAttribute IID__ID = eINSTANCE.getIID_Id(); + + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement IContent Element}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIContentElement() + * @generated + */ + EClass ICONTENT_ELEMENT = eINSTANCE.getIContentElement(); + + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer IContainer}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContainer + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIContainer() + * @generated + */ + EClass ICONTAINER = eINSTANCE.getIContainer(); + + /** + * The meta object literal for the 'Contents' containment reference list feature. + * + * + * @generated + */ + EReference ICONTAINER__CONTENTS = eINSTANCE.getIContainer_Contents(); + + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.impl.FolderImpl Folder}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.FolderImpl + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getFolder() + * @generated + */ + EClass FOLDER = eINSTANCE.getFolder(); + + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable ITestable}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.ITestable + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getITestable() + * @generated + */ + EClass ITESTABLE = eINSTANCE.getITestable(); + + /** + * The meta object literal for the 'Tested' attribute feature. + * + * + * @generated + */ + EAttribute ITESTABLE__TESTED = eINSTANCE.getITestable_Tested(); + + /** + * The meta object literal for the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable IModifiable}' class. + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable + * @see com.specmate.migration.test.onlymetachange.testmodel.base.impl.BasePackageImpl#getIModifiable() + * @generated + */ + EClass IMODIFIABLE = eINSTANCE.getIModifiable(); + + } + +} //BasePackage diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/Folder.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/Folder.java new file mode 100644 index 000000000..33fe18420 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/Folder.java @@ -0,0 +1,17 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + + +/** + * + * A representation of the model object 'Folder'. + * + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getFolder() + * @model + * @generated + */ +public interface Folder extends IContainer { +} // Folder diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IContainer.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IContainer.java new file mode 100644 index 000000000..97343ba11 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IContainer.java @@ -0,0 +1,40 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + +import org.eclipse.emf.common.util.EList; + +/** + * + * A representation of the model object 'IContainer'. + * + * + *

+ * The following features are supported: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer#getContents Contents}
  • + *
+ * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getIContainer() + * @model interface="true" abstract="true" + * @generated + */ +public interface IContainer extends IContentElement { + /** + * Returns the value of the 'Contents' containment reference list. + * The list contents are of type {@link com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement}. + * + *

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

+ * + * @return the value of the 'Contents' containment reference list. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getIContainer_Contents() + * @model containment="true" + * @generated + */ + EList getContents(); + +} // IContainer diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IContentElement.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IContentElement.java new file mode 100644 index 000000000..1023f8c1a --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IContentElement.java @@ -0,0 +1,17 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + + +/** + * + * A representation of the model object 'IContent Element'. + * + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getIContentElement() + * @model interface="true" abstract="true" + * @generated + */ +public interface IContentElement extends IID { +} // IContentElement diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IID.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IID.java new file mode 100644 index 000000000..4f031f533 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IID.java @@ -0,0 +1,50 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * A representation of the model object 'IID'. + * + * + *

+ * The following features are supported: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.base.IID#getId Id}
  • + *
+ * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getIID() + * @model interface="true" abstract="true" + * @generated + */ +public interface IID extends EObject { + /** + * Returns the value of the 'Id' attribute. + * + *

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

+ * + * @return the value of the 'Id' attribute. + * @see #setId(String) + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getIID_Id() + * @model + * @generated + */ + String getId(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID#getId Id}' attribute. + * + * + * @param value the new value of the 'Id' attribute. + * @see #getId() + * @generated + */ + void setId(String value); + +} // IID diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IModifiable.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IModifiable.java new file mode 100644 index 000000000..18bd94bc7 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/IModifiable.java @@ -0,0 +1,17 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + + +/** + * + * A representation of the model object 'IModifiable'. + * + * + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getIModifiable() + * @model interface="true" abstract="true" + * @generated + */ +public interface IModifiable extends ITestable { +} // IModifiable diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/ITestable.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/ITestable.java new file mode 100644 index 000000000..4e58b6745 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/ITestable.java @@ -0,0 +1,50 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * A representation of the model object 'ITestable'. + * + * + *

+ * The following features are supported: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable#isTested Tested}
  • + *
+ * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getITestable() + * @model interface="true" abstract="true" + * @generated + */ +public interface ITestable extends EObject { + /** + * Returns the value of the 'Tested' attribute. + * + *

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

+ * + * @return the value of the 'Tested' attribute. + * @see #setTested(boolean) + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#getITestable_Tested() + * @model + * @generated + */ + boolean isTested(); + + /** + * Sets the value of the '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable#isTested Tested}' attribute. + * + * + * @param value the new value of the 'Tested' attribute. + * @see #isTested() + * @generated + */ + void setTested(boolean value); + +} // ITestable diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/BaseFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/BaseFactoryImpl.java new file mode 100644 index 000000000..c19081d66 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/BaseFactoryImpl.java @@ -0,0 +1,95 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.base.*; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.impl.EFactoryImpl; + +import org.eclipse.emf.ecore.plugin.EcorePlugin; + +/** + * + * An implementation of the model Factory. + * + * @generated + */ +public class BaseFactoryImpl extends EFactoryImpl implements BaseFactory { + /** + * Creates the default factory implementation. + * + * + * @generated + */ + public static BaseFactory init() { + try { + BaseFactory theBaseFactory = (BaseFactory)EPackage.Registry.INSTANCE.getEFactory(BasePackage.eNS_URI); + if (theBaseFactory != null) { + return theBaseFactory; + } + } + catch (Exception exception) { + EcorePlugin.INSTANCE.log(exception); + } + return new BaseFactoryImpl(); + } + + /** + * Creates an instance of the factory. + * + * + * @generated + */ + public BaseFactoryImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + public EObject create(EClass eClass) { + switch (eClass.getClassifierID()) { + case BasePackage.FOLDER: return createFolder(); + default: + throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); + } + } + + /** + * + * + * @generated + */ + public Folder createFolder() { + FolderImpl folder = new FolderImpl(); + return folder; + } + + /** + * + * + * @generated + */ + public BasePackage getBasePackage() { + return (BasePackage)getEPackage(); + } + + /** + * + * + * @deprecated + * @generated + */ + @Deprecated + public static BasePackage getPackage() { + return BasePackage.eINSTANCE; + } + +} //BaseFactoryImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/BasePackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/BasePackageImpl.java new file mode 100644 index 000000000..ad5c5b3d3 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/BasePackageImpl.java @@ -0,0 +1,317 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage; + +import com.specmate.migration.test.onlymetachange.testmodel.artefact.impl.ArtefactPackageImpl; + +import com.specmate.migration.test.onlymetachange.testmodel.base.BaseFactory; +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; +import com.specmate.migration.test.onlymetachange.testmodel.base.Folder; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContainer; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement; +import com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable; +import com.specmate.migration.test.onlymetachange.testmodel.base.ITestable; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EPackage; +import org.eclipse.emf.ecore.EReference; + +import org.eclipse.emf.ecore.impl.EPackageImpl; + +/** + * + * An implementation of the model Package. + * + * @generated + */ +public class BasePackageImpl extends EPackageImpl implements BasePackage { + /** + * + * + * @generated + */ + private EClass iidEClass = null; + + /** + * + * + * @generated + */ + private EClass iContentElementEClass = null; + + /** + * + * + * @generated + */ + private EClass iContainerEClass = null; + + /** + * + * + * @generated + */ + private EClass folderEClass = null; + + /** + * + * + * @generated + */ + private EClass iTestableEClass = null; + + /** + * + * + * @generated + */ + private EClass iModifiableEClass = null; + + /** + * Creates an instance of the model Package, registered with + * {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the package + * package URI value. + *

Note: the correct way to create the package is via the static + * factory method {@link #init init()}, which also performs + * initialization of the package, or returns the registered package, + * if one already exists. + * + * + * @see org.eclipse.emf.ecore.EPackage.Registry + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage#eNS_URI + * @see #init() + * @generated + */ + private BasePackageImpl() { + super(eNS_URI, BaseFactory.eINSTANCE); + } + + /** + * + * + * @generated + */ + private static boolean isInited = false; + + /** + * Creates, registers, and initializes the Package for this model, and for any others upon which it depends. + * + *

This method is used to initialize {@link BasePackage#eINSTANCE} when that field is accessed. + * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. + * + * + * @see #eNS_URI + * @see #createPackageContents() + * @see #initializePackageContents() + * @generated + */ + public static BasePackage init() { + if (isInited) return (BasePackage)EPackage.Registry.INSTANCE.getEPackage(BasePackage.eNS_URI); + + // Obtain or create and register package + BasePackageImpl theBasePackage = (BasePackageImpl)(EPackage.Registry.INSTANCE.get(eNS_URI) instanceof BasePackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) : new BasePackageImpl()); + + isInited = true; + + // Obtain or create and register interdependencies + ArtefactPackageImpl theArtefactPackage = (ArtefactPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(ArtefactPackage.eNS_URI) instanceof ArtefactPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ArtefactPackage.eNS_URI) : ArtefactPackage.eINSTANCE); + + // Create package meta-data objects + theBasePackage.createPackageContents(); + theArtefactPackage.createPackageContents(); + + // Initialize created meta-data + theBasePackage.initializePackageContents(); + theArtefactPackage.initializePackageContents(); + + // Mark meta-data to indicate it can't be changed + theBasePackage.freeze(); + + + // Update the registry and return the package + EPackage.Registry.INSTANCE.put(BasePackage.eNS_URI, theBasePackage); + return theBasePackage; + } + + /** + * + * + * @generated + */ + public EClass getIID() { + return iidEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getIID_Id() { + return (EAttribute)iidEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EClass getIContentElement() { + return iContentElementEClass; + } + + /** + * + * + * @generated + */ + public EClass getIContainer() { + return iContainerEClass; + } + + /** + * + * + * @generated + */ + public EReference getIContainer_Contents() { + return (EReference)iContainerEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EClass getFolder() { + return folderEClass; + } + + /** + * + * + * @generated + */ + public EClass getITestable() { + return iTestableEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getITestable_Tested() { + return (EAttribute)iTestableEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EClass getIModifiable() { + return iModifiableEClass; + } + + /** + * + * + * @generated + */ + public BaseFactory getBaseFactory() { + return (BaseFactory)getEFactoryInstance(); + } + + /** + * + * + * @generated + */ + private boolean isCreated = false; + + /** + * Creates the meta-model objects for the package. This method is + * guarded to have no affect on any invocation but its first. + * + * + * @generated + */ + public void createPackageContents() { + if (isCreated) return; + isCreated = true; + + // Create classes and their features + iidEClass = createEClass(IID); + createEAttribute(iidEClass, IID__ID); + + iContentElementEClass = createEClass(ICONTENT_ELEMENT); + + iContainerEClass = createEClass(ICONTAINER); + createEReference(iContainerEClass, ICONTAINER__CONTENTS); + + folderEClass = createEClass(FOLDER); + + iTestableEClass = createEClass(ITESTABLE); + createEAttribute(iTestableEClass, ITESTABLE__TESTED); + + iModifiableEClass = createEClass(IMODIFIABLE); + } + + /** + * + * + * @generated + */ + private boolean isInitialized = false; + + /** + * Complete the initialization of the package and its meta-model. This + * method is guarded to have no affect on any invocation but its first. + * + * + * @generated + */ + public void initializePackageContents() { + if (isInitialized) return; + isInitialized = true; + + // Initialize package + setName(eNAME); + setNsPrefix(eNS_PREFIX); + setNsURI(eNS_URI); + + // Create type parameters + + // Set bounds for type parameters + + // Add supertypes to classes + iContentElementEClass.getESuperTypes().add(this.getIID()); + iContainerEClass.getESuperTypes().add(this.getIContentElement()); + folderEClass.getESuperTypes().add(this.getIContainer()); + iModifiableEClass.getESuperTypes().add(this.getITestable()); + + // Initialize classes, features, and operations; add parameters + initEClass(iidEClass, com.specmate.migration.test.onlymetachange.testmodel.base.IID.class, "IID", IS_ABSTRACT, IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getIID_Id(), ecorePackage.getEString(), "id", null, 0, 1, com.specmate.migration.test.onlymetachange.testmodel.base.IID.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(iContentElementEClass, IContentElement.class, "IContentElement", IS_ABSTRACT, IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + + initEClass(iContainerEClass, IContainer.class, "IContainer", IS_ABSTRACT, IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEReference(getIContainer_Contents(), this.getIContentElement(), null, "contents", null, 0, -1, IContainer.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(folderEClass, Folder.class, "Folder", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + + initEClass(iTestableEClass, ITestable.class, "ITestable", IS_ABSTRACT, IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getITestable_Tested(), ecorePackage.getEBoolean(), "tested", null, 0, 1, ITestable.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(iModifiableEClass, IModifiable.class, "IModifiable", IS_ABSTRACT, IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + + // Create resource + createResource(eNS_URI); + } + +} //BasePackageImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/FolderImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/FolderImpl.java new file mode 100644 index 000000000..4e3dbabdb --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/impl/FolderImpl.java @@ -0,0 +1,188 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base.impl; + +import com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage; +import com.specmate.migration.test.onlymetachange.testmodel.base.Folder; +import com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement; + +import java.util.Collection; + +import org.eclipse.emf.common.notify.NotificationChain; + +import org.eclipse.emf.common.util.EList; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.InternalEObject; + +import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; + +import org.eclipse.emf.ecore.util.InternalEList; + +/** + * + * An implementation of the model object 'Folder'. + * + *

+ * The following features are implemented: + *

+ *
    + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.base.impl.FolderImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.onlymetachange.testmodel.base.impl.FolderImpl#getContents Contents}
  • + *
+ * + * @generated + */ +public class FolderImpl extends MinimalEObjectImpl.Container implements Folder { + /** + * The default value of the '{@link #getId() Id}' attribute. + * + * + * @see #getId() + * @generated + * @ordered + */ + protected static final String ID_EDEFAULT = null; + + /** + * + * + * @generated + */ + protected FolderImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return BasePackage.Literals.FOLDER; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() { + return 0; + } + + /** + * + * + * @generated + */ + public String getId() { + return (String)eDynamicGet(BasePackage.FOLDER__ID, BasePackage.Literals.IID__ID, true, true); + } + + /** + * + * + * @generated + */ + public void setId(String newId) { + eDynamicSet(BasePackage.FOLDER__ID, BasePackage.Literals.IID__ID, newId); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getContents() { + return (EList)eDynamicGet(BasePackage.FOLDER__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + } + + /** + * + * + * @generated + */ + @Override + public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { + switch (featureID) { + case BasePackage.FOLDER__CONTENTS: + return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); + } + return super.eInverseRemove(otherEnd, featureID, msgs); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case BasePackage.FOLDER__ID: + return getId(); + case BasePackage.FOLDER__CONTENTS: + return getContents(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case BasePackage.FOLDER__ID: + setId((String)newValue); + return; + case BasePackage.FOLDER__CONTENTS: + getContents().clear(); + getContents().addAll((Collection)newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case BasePackage.FOLDER__ID: + setId(ID_EDEFAULT); + return; + case BasePackage.FOLDER__CONTENTS: + getContents().clear(); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case BasePackage.FOLDER__ID: + return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); + case BasePackage.FOLDER__CONTENTS: + return !getContents().isEmpty(); + } + return super.eIsSet(featureID); + } + +} //FolderImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/util/BaseAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/util/BaseAdapterFactory.java new file mode 100644 index 000000000..f272ce489 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/util/BaseAdapterFactory.java @@ -0,0 +1,210 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base.util; + +import com.specmate.migration.test.onlymetachange.testmodel.base.*; + +import org.eclipse.emf.common.notify.Adapter; +import org.eclipse.emf.common.notify.Notifier; + +import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * The Adapter Factory for the model. + * It provides an adapter createXXX method for each class of the model. + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage + * @generated + */ +public class BaseAdapterFactory extends AdapterFactoryImpl { + /** + * The cached model package. + * + * + * @generated + */ + protected static BasePackage modelPackage; + + /** + * Creates an instance of the adapter factory. + * + * + * @generated + */ + public BaseAdapterFactory() { + if (modelPackage == null) { + modelPackage = BasePackage.eINSTANCE; + } + } + + /** + * Returns whether this factory is applicable for the type of the object. + * + * This implementation returns true if the object is either the model's package or is an instance object of the model. + * + * @return whether this factory is applicable for the type of the object. + * @generated + */ + @Override + public boolean isFactoryForType(Object object) { + if (object == modelPackage) { + return true; + } + if (object instanceof EObject) { + return ((EObject)object).eClass().getEPackage() == modelPackage; + } + return false; + } + + /** + * The switch that delegates to the createXXX methods. + * + * + * @generated + */ + protected BaseSwitch modelSwitch = + new BaseSwitch() { + @Override + public Adapter caseIID(IID object) { + return createIIDAdapter(); + } + @Override + public Adapter caseIContentElement(IContentElement object) { + return createIContentElementAdapter(); + } + @Override + public Adapter caseIContainer(IContainer object) { + return createIContainerAdapter(); + } + @Override + public Adapter caseFolder(Folder object) { + return createFolderAdapter(); + } + @Override + public Adapter caseITestable(ITestable object) { + return createITestableAdapter(); + } + @Override + public Adapter caseIModifiable(IModifiable object) { + return createIModifiableAdapter(); + } + @Override + public Adapter defaultCase(EObject object) { + return createEObjectAdapter(); + } + }; + + /** + * Creates an adapter for the target. + * + * + * @param target the object to adapt. + * @return the adapter for the target. + * @generated + */ + @Override + public Adapter createAdapter(Notifier target) { + return modelSwitch.doSwitch((EObject)target); + } + + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IID IID}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IID + * @generated + */ + public Adapter createIIDAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement IContent Element}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContentElement + * @generated + */ + public Adapter createIContentElementAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IContainer IContainer}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IContainer + * @generated + */ + public Adapter createIContainerAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.Folder Folder}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.Folder + * @generated + */ + public Adapter createFolderAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.ITestable ITestable}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.ITestable + * @generated + */ + public Adapter createITestableAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable IModifiable}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see com.specmate.migration.test.onlymetachange.testmodel.base.IModifiable + * @generated + */ + public Adapter createIModifiableAdapter() { + return null; + } + + /** + * Creates a new adapter for the default case. + * + * This default implementation returns null. + * + * @return the new adapter. + * @generated + */ + public Adapter createEObjectAdapter() { + return null; + } + +} //BaseAdapterFactory diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/util/BaseSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/util/BaseSwitch.java new file mode 100644 index 000000000..a0745b193 --- /dev/null +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/onlymetachange/testmodel/base/util/BaseSwitch.java @@ -0,0 +1,222 @@ +/** + */ +package com.specmate.migration.test.onlymetachange.testmodel.base.util; + +import com.specmate.migration.test.onlymetachange.testmodel.base.*; + +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.util.Switch; + +/** + * + * The Switch for the model's inheritance hierarchy. + * It supports the call {@link #doSwitch(EObject) doSwitch(object)} + * to invoke the caseXXX method for each class of the model, + * starting with the actual class of the object + * and proceeding up the inheritance hierarchy + * until a non-null result is returned, + * which is the result of the switch. + * + * @see com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage + * @generated + */ +public class BaseSwitch extends Switch { + /** + * The cached model package + * + * + * @generated + */ + protected static BasePackage modelPackage; + + /** + * Creates an instance of the switch. + * + * + * @generated + */ + public BaseSwitch() { + if (modelPackage == null) { + modelPackage = BasePackage.eINSTANCE; + } + } + + /** + * Checks whether this is a switch for the given package. + * + * + * @param ePackage the package in question. + * @return whether this is a switch for the given package. + * @generated + */ + @Override + protected boolean isSwitchFor(EPackage ePackage) { + return ePackage == modelPackage; + } + + /** + * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + * + * + * @return the first non-null result returned by a caseXXX call. + * @generated + */ + @Override + protected T doSwitch(int classifierID, EObject theEObject) { + switch (classifierID) { + case BasePackage.IID: { + IID iid = (IID)theEObject; + T result = caseIID(iid); + if (result == null) result = defaultCase(theEObject); + return result; + } + case BasePackage.ICONTENT_ELEMENT: { + IContentElement iContentElement = (IContentElement)theEObject; + T result = caseIContentElement(iContentElement); + if (result == null) result = caseIID(iContentElement); + if (result == null) result = defaultCase(theEObject); + return result; + } + case BasePackage.ICONTAINER: { + IContainer iContainer = (IContainer)theEObject; + T result = caseIContainer(iContainer); + if (result == null) result = caseIContentElement(iContainer); + if (result == null) result = caseIID(iContainer); + if (result == null) result = defaultCase(theEObject); + return result; + } + case BasePackage.FOLDER: { + Folder folder = (Folder)theEObject; + T result = caseFolder(folder); + if (result == null) result = caseIContainer(folder); + if (result == null) result = caseIContentElement(folder); + if (result == null) result = caseIID(folder); + if (result == null) result = defaultCase(theEObject); + return result; + } + case BasePackage.ITESTABLE: { + ITestable iTestable = (ITestable)theEObject; + T result = caseITestable(iTestable); + if (result == null) result = defaultCase(theEObject); + return result; + } + case BasePackage.IMODIFIABLE: { + IModifiable iModifiable = (IModifiable)theEObject; + T result = caseIModifiable(iModifiable); + if (result == null) result = caseITestable(iModifiable); + if (result == null) result = defaultCase(theEObject); + return result; + } + default: return defaultCase(theEObject); + } + } + + /** + * Returns the result of interpreting the object as an instance of 'IID'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IID'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIID(IID object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IContent Element'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IContent Element'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIContentElement(IContentElement object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IContainer'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IContainer'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIContainer(IContainer object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Folder'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'Folder'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseFolder(Folder object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'ITestable'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'ITestable'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseITestable(ITestable object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'IModifiable'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'IModifiable'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseIModifiable(IModifiable object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'EObject'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch, but this is the last case anyway. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'EObject'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) + * @generated + */ + @Override + public T defaultCase(EObject object) { + return null; + } + +} //BaseSwitch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactFactory.java index d83ba97b0..695d80d16 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactFactory.java @@ -31,13 +31,13 @@ public interface ArtefactFactory extends EFactory { Diagram createDiagram(); /** - * Returns a new object of class 'File'. + * Returns a new object of class 'Sketch'. * * - * @return a new object of class 'File'. + * @return a new object of class 'Sketch'. * @generated */ - File createFile(); + Sketch createSketch(); /** * Returns the package supported by this factory. diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactPackage.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactPackage.java index 1c9a8191c..57050e16e 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactPackage.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/ArtefactPackage.java @@ -175,16 +175,15 @@ public interface ArtefactPackage extends EPackage { */ int DIAGRAM_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; - /** - * The meta object id for the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl File}' class. + * The meta object id for the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - int FILE = 1; + int SKETCH = 1; /** * The feature id for the 'Tested' attribute. @@ -193,7 +192,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__TESTED = BasePackage.IMODIFIABLE__TESTED; + int SKETCH__TESTED = BasePackage.IMODIFIABLE__TESTED; /** * The feature id for the 'Name' attribute. @@ -202,7 +201,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__NAME = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; + int SKETCH__NAME = BasePackage.IMODIFIABLE_FEATURE_COUNT + 0; /** * The feature id for the 'Id' attribute. @@ -211,7 +210,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; + int SKETCH__ID = BasePackage.IMODIFIABLE_FEATURE_COUNT + 1; /** * The feature id for the 'Contents' containment reference list. @@ -220,7 +219,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; + int SKETCH__CONTENTS = BasePackage.IMODIFIABLE_FEATURE_COUNT + 2; /** * The feature id for the 'Byte Var1' attribute. @@ -229,7 +228,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; + int SKETCH__BYTE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 3; /** * The feature id for the 'Byte Var2' attribute. @@ -238,7 +237,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; + int SKETCH__BYTE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 4; /** * The feature id for the 'Byte Var3' attribute. @@ -247,7 +246,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; + int SKETCH__BYTE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 5; /** * The feature id for the 'Byte Var4' attribute. @@ -256,7 +255,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; + int SKETCH__BYTE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 6; /** * The feature id for the 'Byte Var5' attribute. @@ -265,7 +264,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; + int SKETCH__BYTE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 7; /** * The feature id for the 'Short Var1' attribute. @@ -274,7 +273,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; + int SKETCH__SHORT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 8; /** * The feature id for the 'Short Var2' attribute. @@ -283,7 +282,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; + int SKETCH__SHORT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 9; /** * The feature id for the 'Short Var3' attribute. @@ -292,7 +291,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; + int SKETCH__SHORT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 10; /** * The feature id for the 'Short Var4' attribute. @@ -301,7 +300,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; + int SKETCH__SHORT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 11; /** * The feature id for the 'Short Var5' attribute. @@ -310,7 +309,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; + int SKETCH__SHORT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 12; /** * The feature id for the 'Int Var1' attribute. @@ -319,7 +318,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; + int SKETCH__INT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 13; /** * The feature id for the 'Int Var2' attribute. @@ -328,7 +327,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; + int SKETCH__INT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 14; /** * The feature id for the 'Int Var3' attribute. @@ -337,7 +336,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; + int SKETCH__INT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 15; /** * The feature id for the 'Int Var4' attribute. @@ -346,7 +345,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; + int SKETCH__INT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 16; /** * The feature id for the 'Int Var5' attribute. @@ -355,7 +354,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; + int SKETCH__INT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 17; /** * The feature id for the 'Char Var1' attribute. @@ -364,7 +363,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; + int SKETCH__CHAR_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 18; /** * The feature id for the 'Char Var2' attribute. @@ -373,7 +372,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; + int SKETCH__CHAR_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 19; /** * The feature id for the 'Char Var3' attribute. @@ -382,7 +381,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; + int SKETCH__CHAR_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 20; /** * The feature id for the 'Char Var4' attribute. @@ -391,7 +390,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; + int SKETCH__CHAR_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 21; /** * The feature id for the 'Char Var5' attribute. @@ -400,7 +399,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; + int SKETCH__CHAR_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 22; /** * The feature id for the 'Long Var1' attribute. @@ -409,7 +408,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; + int SKETCH__LONG_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 23; /** * The feature id for the 'Long Var2' attribute. @@ -418,7 +417,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; + int SKETCH__LONG_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 24; /** * The feature id for the 'Long Var3' attribute. @@ -427,7 +426,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; + int SKETCH__LONG_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 25; /** * The feature id for the 'Long Var4' attribute. @@ -436,7 +435,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; + int SKETCH__LONG_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 26; /** * The feature id for the 'Long Var5' attribute. @@ -445,7 +444,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; + int SKETCH__LONG_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 27; /** * The feature id for the 'Float Var1' attribute. @@ -454,7 +453,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; + int SKETCH__FLOAT_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 28; /** * The feature id for the 'Float Var2' attribute. @@ -463,7 +462,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; + int SKETCH__FLOAT_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 29; /** * The feature id for the 'Float Var3' attribute. @@ -472,7 +471,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; + int SKETCH__FLOAT_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 30; /** * The feature id for the 'Float Var4' attribute. @@ -481,7 +480,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; + int SKETCH__FLOAT_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 31; /** * The feature id for the 'Float Var5' attribute. @@ -490,7 +489,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; + int SKETCH__FLOAT_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 32; /** * The feature id for the 'Double Var1' attribute. @@ -499,7 +498,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; + int SKETCH__DOUBLE_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 33; /** * The feature id for the 'Double Var2' attribute. @@ -508,7 +507,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; + int SKETCH__DOUBLE_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 34; /** * The feature id for the 'Double Var3' attribute. @@ -517,7 +516,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; + int SKETCH__DOUBLE_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 35; /** * The feature id for the 'Double Var4' attribute. @@ -526,7 +525,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; + int SKETCH__DOUBLE_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 36; /** * The feature id for the 'Double Var5' attribute. @@ -535,7 +534,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; + int SKETCH__DOUBLE_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 37; /** * The feature id for the 'Boolean Var1' attribute. @@ -544,7 +543,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; + int SKETCH__BOOLEAN_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 38; /** * The feature id for the 'Boolean Var2' attribute. @@ -553,7 +552,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; + int SKETCH__BOOLEAN_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 39; /** * The feature id for the 'Boolean Var3' attribute. @@ -562,7 +561,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; + int SKETCH__BOOLEAN_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 40; /** * The feature id for the 'Boolean Var4' attribute. @@ -571,7 +570,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; + int SKETCH__BOOLEAN_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 41; /** * The feature id for the 'Boolean Var5' attribute. @@ -580,7 +579,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; + int SKETCH__BOOLEAN_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 42; /** * The feature id for the 'String Var1' attribute. @@ -589,7 +588,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; + int SKETCH__STRING_VAR1 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 43; /** * The feature id for the 'String Var2' attribute. @@ -598,7 +597,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; + int SKETCH__STRING_VAR2 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 44; /** * The feature id for the 'String Var3' attribute. @@ -607,7 +606,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; + int SKETCH__STRING_VAR3 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 45; /** * The feature id for the 'String Var4' attribute. @@ -616,7 +615,7 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; + int SKETCH__STRING_VAR4 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 46; /** * The feature id for the 'String Var5' attribute. @@ -625,25 +624,25 @@ public interface ArtefactPackage extends EPackage { * @generated * @ordered */ - int FILE__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; + int SKETCH__STRING_VAR5 = BasePackage.IMODIFIABLE_FEATURE_COUNT + 47; /** - * The number of structural features of the 'File' class. + * The number of structural features of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 48; + int SKETCH_FEATURE_COUNT = BasePackage.IMODIFIABLE_FEATURE_COUNT + 48; /** - * The number of operations of the 'File' class. + * The number of operations of the 'Sketch' class. * * * @generated * @ordered */ - int FILE_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; + int SKETCH_OPERATION_COUNT = BasePackage.IMODIFIABLE_OPERATION_COUNT + 0; /** @@ -723,509 +722,509 @@ public interface ArtefactPackage extends EPackage { EAttribute getDiagram_Booleanlinked(); /** - * Returns the meta object for class '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File File}'. + * Returns the meta object for class '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch Sketch}'. * * - * @return the meta object for class 'File'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File + * @return the meta object for class 'Sketch'. + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch * @generated */ - EClass getFile(); + EClass getSketch(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar1 Byte Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}'. * * * @return the meta object for the attribute 'Byte Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar1(); + EAttribute getSketch_ByteVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar2 Byte Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}'. * * * @return the meta object for the attribute 'Byte Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar2(); + EAttribute getSketch_ByteVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar3 Byte Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}'. * * * @return the meta object for the attribute 'Byte Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar3(); + EAttribute getSketch_ByteVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar4 Byte Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}'. * * * @return the meta object for the attribute 'Byte Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar4(); + EAttribute getSketch_ByteVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar5 Byte Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}'. * * * @return the meta object for the attribute 'Byte Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ByteVar5(); + EAttribute getSketch_ByteVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar1 Short Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}'. * * * @return the meta object for the attribute 'Short Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar1(); + EAttribute getSketch_ShortVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar2 Short Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}'. * * * @return the meta object for the attribute 'Short Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar2(); + EAttribute getSketch_ShortVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar3 Short Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}'. * * * @return the meta object for the attribute 'Short Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar3(); + EAttribute getSketch_ShortVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar4 Short Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}'. * * * @return the meta object for the attribute 'Short Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar4(); + EAttribute getSketch_ShortVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar5 Short Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}'. * * * @return the meta object for the attribute 'Short Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_ShortVar5(); + EAttribute getSketch_ShortVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar1 Int Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}'. * * * @return the meta object for the attribute 'Int Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar1(); + EAttribute getSketch_IntVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar2 Int Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}'. * * * @return the meta object for the attribute 'Int Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar2(); + EAttribute getSketch_IntVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar3 Int Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}'. * * * @return the meta object for the attribute 'Int Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar3(); + EAttribute getSketch_IntVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar4 Int Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}'. * * * @return the meta object for the attribute 'Int Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar4(); + EAttribute getSketch_IntVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar5 Int Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}'. * * * @return the meta object for the attribute 'Int Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_IntVar5(); + EAttribute getSketch_IntVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar1 Char Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}'. * * * @return the meta object for the attribute 'Char Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar1(); + EAttribute getSketch_CharVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar2 Char Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}'. * * * @return the meta object for the attribute 'Char Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar2(); + EAttribute getSketch_CharVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar3 Char Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}'. * * * @return the meta object for the attribute 'Char Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar3(); + EAttribute getSketch_CharVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar4 Char Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}'. * * * @return the meta object for the attribute 'Char Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar4(); + EAttribute getSketch_CharVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar5 Char Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}'. * * * @return the meta object for the attribute 'Char Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_CharVar5(); + EAttribute getSketch_CharVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar1 Long Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}'. * * * @return the meta object for the attribute 'Long Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar1(); + EAttribute getSketch_LongVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar2 Long Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}'. * * * @return the meta object for the attribute 'Long Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar2(); + EAttribute getSketch_LongVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar3 Long Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}'. * * * @return the meta object for the attribute 'Long Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar3(); + EAttribute getSketch_LongVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar4 Long Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}'. * * * @return the meta object for the attribute 'Long Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar4(); + EAttribute getSketch_LongVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar5 Long Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}'. * * * @return the meta object for the attribute 'Long Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_LongVar5(); + EAttribute getSketch_LongVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar1 Float Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}'. * * * @return the meta object for the attribute 'Float Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar1(); + EAttribute getSketch_FloatVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar2 Float Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}'. * * * @return the meta object for the attribute 'Float Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar2(); + EAttribute getSketch_FloatVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar3 Float Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}'. * * * @return the meta object for the attribute 'Float Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar3(); + EAttribute getSketch_FloatVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar4 Float Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}'. * * * @return the meta object for the attribute 'Float Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar4(); + EAttribute getSketch_FloatVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar5 Float Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}'. * * * @return the meta object for the attribute 'Float Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_FloatVar5(); + EAttribute getSketch_FloatVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar1 Double Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}'. * * * @return the meta object for the attribute 'Double Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar1(); + EAttribute getSketch_DoubleVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar2 Double Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}'. * * * @return the meta object for the attribute 'Double Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar2(); + EAttribute getSketch_DoubleVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar3 Double Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}'. * * * @return the meta object for the attribute 'Double Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar3(); + EAttribute getSketch_DoubleVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar4 Double Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}'. * * * @return the meta object for the attribute 'Double Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar4(); + EAttribute getSketch_DoubleVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar5 Double Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}'. * * * @return the meta object for the attribute 'Double Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_DoubleVar5(); + EAttribute getSketch_DoubleVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}'. * * * @return the meta object for the attribute 'Boolean Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar1(); + EAttribute getSketch_BooleanVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}'. * * * @return the meta object for the attribute 'Boolean Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar2(); + EAttribute getSketch_BooleanVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}'. * * * @return the meta object for the attribute 'Boolean Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar3(); + EAttribute getSketch_BooleanVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}'. * * * @return the meta object for the attribute 'Boolean Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar4(); + EAttribute getSketch_BooleanVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}'. * * * @return the meta object for the attribute 'Boolean Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_BooleanVar5(); + EAttribute getSketch_BooleanVar5(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar1 String Var1}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar1 String Var1}'. * * * @return the meta object for the attribute 'String Var1'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar1() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar1() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar1(); + EAttribute getSketch_StringVar1(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar2 String Var2}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar2 String Var2}'. * * * @return the meta object for the attribute 'String Var2'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar2() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar2() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar2(); + EAttribute getSketch_StringVar2(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar3 String Var3}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar3 String Var3}'. * * * @return the meta object for the attribute 'String Var3'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar3() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar3() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar3(); + EAttribute getSketch_StringVar3(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar4 String Var4}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar4 String Var4}'. * * * @return the meta object for the attribute 'String Var4'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar4() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar4() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar4(); + EAttribute getSketch_StringVar4(); /** - * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar5 String Var5}'. + * Returns the meta object for the attribute '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar5 String Var5}'. * * * @return the meta object for the attribute 'String Var5'. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar5() - * @see #getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar5() + * @see #getSketch() * @generated */ - EAttribute getFile_StringVar5(); + EAttribute getSketch_StringVar5(); /** * Returns the factory that creates the instances of the model. @@ -1309,14 +1308,14 @@ interface Literals { EAttribute DIAGRAM__BOOLEANLINKED = eINSTANCE.getDiagram_Booleanlinked(); /** - * The meta object literal for the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl File}' class. + * The meta object literal for the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl Sketch}' class. * * - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.ArtefactPackageImpl#getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.ArtefactPackageImpl#getSketch() * @generated */ - EClass FILE = eINSTANCE.getFile(); + EClass SKETCH = eINSTANCE.getSketch(); /** * The meta object literal for the 'Byte Var1' attribute feature. @@ -1324,7 +1323,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR1 = eINSTANCE.getFile_ByteVar1(); + EAttribute SKETCH__BYTE_VAR1 = eINSTANCE.getSketch_ByteVar1(); /** * The meta object literal for the 'Byte Var2' attribute feature. @@ -1332,7 +1331,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR2 = eINSTANCE.getFile_ByteVar2(); + EAttribute SKETCH__BYTE_VAR2 = eINSTANCE.getSketch_ByteVar2(); /** * The meta object literal for the 'Byte Var3' attribute feature. @@ -1340,7 +1339,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR3 = eINSTANCE.getFile_ByteVar3(); + EAttribute SKETCH__BYTE_VAR3 = eINSTANCE.getSketch_ByteVar3(); /** * The meta object literal for the 'Byte Var4' attribute feature. @@ -1348,7 +1347,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR4 = eINSTANCE.getFile_ByteVar4(); + EAttribute SKETCH__BYTE_VAR4 = eINSTANCE.getSketch_ByteVar4(); /** * The meta object literal for the 'Byte Var5' attribute feature. @@ -1356,7 +1355,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BYTE_VAR5 = eINSTANCE.getFile_ByteVar5(); + EAttribute SKETCH__BYTE_VAR5 = eINSTANCE.getSketch_ByteVar5(); /** * The meta object literal for the 'Short Var1' attribute feature. @@ -1364,7 +1363,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR1 = eINSTANCE.getFile_ShortVar1(); + EAttribute SKETCH__SHORT_VAR1 = eINSTANCE.getSketch_ShortVar1(); /** * The meta object literal for the 'Short Var2' attribute feature. @@ -1372,7 +1371,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR2 = eINSTANCE.getFile_ShortVar2(); + EAttribute SKETCH__SHORT_VAR2 = eINSTANCE.getSketch_ShortVar2(); /** * The meta object literal for the 'Short Var3' attribute feature. @@ -1380,7 +1379,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR3 = eINSTANCE.getFile_ShortVar3(); + EAttribute SKETCH__SHORT_VAR3 = eINSTANCE.getSketch_ShortVar3(); /** * The meta object literal for the 'Short Var4' attribute feature. @@ -1388,7 +1387,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR4 = eINSTANCE.getFile_ShortVar4(); + EAttribute SKETCH__SHORT_VAR4 = eINSTANCE.getSketch_ShortVar4(); /** * The meta object literal for the 'Short Var5' attribute feature. @@ -1396,7 +1395,7 @@ interface Literals { * * @generated */ - EAttribute FILE__SHORT_VAR5 = eINSTANCE.getFile_ShortVar5(); + EAttribute SKETCH__SHORT_VAR5 = eINSTANCE.getSketch_ShortVar5(); /** * The meta object literal for the 'Int Var1' attribute feature. @@ -1404,7 +1403,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR1 = eINSTANCE.getFile_IntVar1(); + EAttribute SKETCH__INT_VAR1 = eINSTANCE.getSketch_IntVar1(); /** * The meta object literal for the 'Int Var2' attribute feature. @@ -1412,7 +1411,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR2 = eINSTANCE.getFile_IntVar2(); + EAttribute SKETCH__INT_VAR2 = eINSTANCE.getSketch_IntVar2(); /** * The meta object literal for the 'Int Var3' attribute feature. @@ -1420,7 +1419,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR3 = eINSTANCE.getFile_IntVar3(); + EAttribute SKETCH__INT_VAR3 = eINSTANCE.getSketch_IntVar3(); /** * The meta object literal for the 'Int Var4' attribute feature. @@ -1428,7 +1427,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR4 = eINSTANCE.getFile_IntVar4(); + EAttribute SKETCH__INT_VAR4 = eINSTANCE.getSketch_IntVar4(); /** * The meta object literal for the 'Int Var5' attribute feature. @@ -1436,7 +1435,7 @@ interface Literals { * * @generated */ - EAttribute FILE__INT_VAR5 = eINSTANCE.getFile_IntVar5(); + EAttribute SKETCH__INT_VAR5 = eINSTANCE.getSketch_IntVar5(); /** * The meta object literal for the 'Char Var1' attribute feature. @@ -1444,7 +1443,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR1 = eINSTANCE.getFile_CharVar1(); + EAttribute SKETCH__CHAR_VAR1 = eINSTANCE.getSketch_CharVar1(); /** * The meta object literal for the 'Char Var2' attribute feature. @@ -1452,7 +1451,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR2 = eINSTANCE.getFile_CharVar2(); + EAttribute SKETCH__CHAR_VAR2 = eINSTANCE.getSketch_CharVar2(); /** * The meta object literal for the 'Char Var3' attribute feature. @@ -1460,7 +1459,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR3 = eINSTANCE.getFile_CharVar3(); + EAttribute SKETCH__CHAR_VAR3 = eINSTANCE.getSketch_CharVar3(); /** * The meta object literal for the 'Char Var4' attribute feature. @@ -1468,7 +1467,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR4 = eINSTANCE.getFile_CharVar4(); + EAttribute SKETCH__CHAR_VAR4 = eINSTANCE.getSketch_CharVar4(); /** * The meta object literal for the 'Char Var5' attribute feature. @@ -1476,7 +1475,7 @@ interface Literals { * * @generated */ - EAttribute FILE__CHAR_VAR5 = eINSTANCE.getFile_CharVar5(); + EAttribute SKETCH__CHAR_VAR5 = eINSTANCE.getSketch_CharVar5(); /** * The meta object literal for the 'Long Var1' attribute feature. @@ -1484,7 +1483,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR1 = eINSTANCE.getFile_LongVar1(); + EAttribute SKETCH__LONG_VAR1 = eINSTANCE.getSketch_LongVar1(); /** * The meta object literal for the 'Long Var2' attribute feature. @@ -1492,7 +1491,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR2 = eINSTANCE.getFile_LongVar2(); + EAttribute SKETCH__LONG_VAR2 = eINSTANCE.getSketch_LongVar2(); /** * The meta object literal for the 'Long Var3' attribute feature. @@ -1500,7 +1499,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR3 = eINSTANCE.getFile_LongVar3(); + EAttribute SKETCH__LONG_VAR3 = eINSTANCE.getSketch_LongVar3(); /** * The meta object literal for the 'Long Var4' attribute feature. @@ -1508,7 +1507,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR4 = eINSTANCE.getFile_LongVar4(); + EAttribute SKETCH__LONG_VAR4 = eINSTANCE.getSketch_LongVar4(); /** * The meta object literal for the 'Long Var5' attribute feature. @@ -1516,7 +1515,7 @@ interface Literals { * * @generated */ - EAttribute FILE__LONG_VAR5 = eINSTANCE.getFile_LongVar5(); + EAttribute SKETCH__LONG_VAR5 = eINSTANCE.getSketch_LongVar5(); /** * The meta object literal for the 'Float Var1' attribute feature. @@ -1524,7 +1523,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR1 = eINSTANCE.getFile_FloatVar1(); + EAttribute SKETCH__FLOAT_VAR1 = eINSTANCE.getSketch_FloatVar1(); /** * The meta object literal for the 'Float Var2' attribute feature. @@ -1532,7 +1531,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR2 = eINSTANCE.getFile_FloatVar2(); + EAttribute SKETCH__FLOAT_VAR2 = eINSTANCE.getSketch_FloatVar2(); /** * The meta object literal for the 'Float Var3' attribute feature. @@ -1540,7 +1539,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR3 = eINSTANCE.getFile_FloatVar3(); + EAttribute SKETCH__FLOAT_VAR3 = eINSTANCE.getSketch_FloatVar3(); /** * The meta object literal for the 'Float Var4' attribute feature. @@ -1548,7 +1547,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR4 = eINSTANCE.getFile_FloatVar4(); + EAttribute SKETCH__FLOAT_VAR4 = eINSTANCE.getSketch_FloatVar4(); /** * The meta object literal for the 'Float Var5' attribute feature. @@ -1556,7 +1555,7 @@ interface Literals { * * @generated */ - EAttribute FILE__FLOAT_VAR5 = eINSTANCE.getFile_FloatVar5(); + EAttribute SKETCH__FLOAT_VAR5 = eINSTANCE.getSketch_FloatVar5(); /** * The meta object literal for the 'Double Var1' attribute feature. @@ -1564,7 +1563,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR1 = eINSTANCE.getFile_DoubleVar1(); + EAttribute SKETCH__DOUBLE_VAR1 = eINSTANCE.getSketch_DoubleVar1(); /** * The meta object literal for the 'Double Var2' attribute feature. @@ -1572,7 +1571,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR2 = eINSTANCE.getFile_DoubleVar2(); + EAttribute SKETCH__DOUBLE_VAR2 = eINSTANCE.getSketch_DoubleVar2(); /** * The meta object literal for the 'Double Var3' attribute feature. @@ -1580,7 +1579,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR3 = eINSTANCE.getFile_DoubleVar3(); + EAttribute SKETCH__DOUBLE_VAR3 = eINSTANCE.getSketch_DoubleVar3(); /** * The meta object literal for the 'Double Var4' attribute feature. @@ -1588,7 +1587,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR4 = eINSTANCE.getFile_DoubleVar4(); + EAttribute SKETCH__DOUBLE_VAR4 = eINSTANCE.getSketch_DoubleVar4(); /** * The meta object literal for the 'Double Var5' attribute feature. @@ -1596,7 +1595,7 @@ interface Literals { * * @generated */ - EAttribute FILE__DOUBLE_VAR5 = eINSTANCE.getFile_DoubleVar5(); + EAttribute SKETCH__DOUBLE_VAR5 = eINSTANCE.getSketch_DoubleVar5(); /** * The meta object literal for the 'Boolean Var1' attribute feature. @@ -1604,7 +1603,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR1 = eINSTANCE.getFile_BooleanVar1(); + EAttribute SKETCH__BOOLEAN_VAR1 = eINSTANCE.getSketch_BooleanVar1(); /** * The meta object literal for the 'Boolean Var2' attribute feature. @@ -1612,7 +1611,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR2 = eINSTANCE.getFile_BooleanVar2(); + EAttribute SKETCH__BOOLEAN_VAR2 = eINSTANCE.getSketch_BooleanVar2(); /** * The meta object literal for the 'Boolean Var3' attribute feature. @@ -1620,7 +1619,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR3 = eINSTANCE.getFile_BooleanVar3(); + EAttribute SKETCH__BOOLEAN_VAR3 = eINSTANCE.getSketch_BooleanVar3(); /** * The meta object literal for the 'Boolean Var4' attribute feature. @@ -1628,7 +1627,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR4 = eINSTANCE.getFile_BooleanVar4(); + EAttribute SKETCH__BOOLEAN_VAR4 = eINSTANCE.getSketch_BooleanVar4(); /** * The meta object literal for the 'Boolean Var5' attribute feature. @@ -1636,7 +1635,7 @@ interface Literals { * * @generated */ - EAttribute FILE__BOOLEAN_VAR5 = eINSTANCE.getFile_BooleanVar5(); + EAttribute SKETCH__BOOLEAN_VAR5 = eINSTANCE.getSketch_BooleanVar5(); /** * The meta object literal for the 'String Var1' attribute feature. @@ -1644,7 +1643,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR1 = eINSTANCE.getFile_StringVar1(); + EAttribute SKETCH__STRING_VAR1 = eINSTANCE.getSketch_StringVar1(); /** * The meta object literal for the 'String Var2' attribute feature. @@ -1652,7 +1651,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR2 = eINSTANCE.getFile_StringVar2(); + EAttribute SKETCH__STRING_VAR2 = eINSTANCE.getSketch_StringVar2(); /** * The meta object literal for the 'String Var3' attribute feature. @@ -1660,7 +1659,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR3 = eINSTANCE.getFile_StringVar3(); + EAttribute SKETCH__STRING_VAR3 = eINSTANCE.getSketch_StringVar3(); /** * The meta object literal for the 'String Var4' attribute feature. @@ -1668,7 +1667,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR4 = eINSTANCE.getFile_StringVar4(); + EAttribute SKETCH__STRING_VAR4 = eINSTANCE.getSketch_StringVar4(); /** * The meta object literal for the 'String Var5' attribute feature. @@ -1676,7 +1675,7 @@ interface Literals { * * @generated */ - EAttribute FILE__STRING_VAR5 = eINSTANCE.getFile_StringVar5(); + EAttribute SKETCH__STRING_VAR5 = eINSTANCE.getSketch_StringVar5(); } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/File.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/Sketch.java similarity index 79% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/File.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/Sketch.java index 74f474042..124fd67cf 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/File.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/Sketch.java @@ -7,65 +7,65 @@ /** * - * A representation of the model object 'File'. + * A representation of the model object 'Sketch'. * * *

* The following features are supported: *

*
    - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar5 String Var5}
  • *
* - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch() * @model * @generated */ -public interface File extends IModifiable, IContainer { +public interface Sketch extends IModifiable, IContainer { /** * Returns the value of the 'Byte Var1' attribute. * @@ -76,14 +76,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var1' attribute. * @see #setByteVar1(byte) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar1() * @model * @generated */ byte getByteVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar1 Byte Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar1 Byte Var1}' attribute. * * * @param value the new value of the 'Byte Var1' attribute. @@ -102,14 +102,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var2' attribute. * @see #setByteVar2(byte) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar2() * @model * @generated */ byte getByteVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar2 Byte Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar2 Byte Var2}' attribute. * * * @param value the new value of the 'Byte Var2' attribute. @@ -128,14 +128,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var3' attribute. * @see #setByteVar3(byte) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar3() * @model * @generated */ byte getByteVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar3 Byte Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar3 Byte Var3}' attribute. * * * @param value the new value of the 'Byte Var3' attribute. @@ -154,14 +154,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var4' attribute. * @see #setByteVar4(byte) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar4() * @model * @generated */ byte getByteVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar4 Byte Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar4 Byte Var4}' attribute. * * * @param value the new value of the 'Byte Var4' attribute. @@ -180,14 +180,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Byte Var5' attribute. * @see #setByteVar5(byte) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ByteVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ByteVar5() * @model * @generated */ byte getByteVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getByteVar5 Byte Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getByteVar5 Byte Var5}' attribute. * * * @param value the new value of the 'Byte Var5' attribute. @@ -206,14 +206,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var1' attribute. * @see #setShortVar1(short) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar1() * @model * @generated */ short getShortVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar1 Short Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar1 Short Var1}' attribute. * * * @param value the new value of the 'Short Var1' attribute. @@ -232,14 +232,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var2' attribute. * @see #setShortVar2(short) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar2() * @model * @generated */ short getShortVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar2 Short Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar2 Short Var2}' attribute. * * * @param value the new value of the 'Short Var2' attribute. @@ -258,14 +258,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var3' attribute. * @see #setShortVar3(short) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar3() * @model * @generated */ short getShortVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar3 Short Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar3 Short Var3}' attribute. * * * @param value the new value of the 'Short Var3' attribute. @@ -284,14 +284,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var4' attribute. * @see #setShortVar4(short) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar4() * @model * @generated */ short getShortVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar4 Short Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar4 Short Var4}' attribute. * * * @param value the new value of the 'Short Var4' attribute. @@ -310,14 +310,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Short Var5' attribute. * @see #setShortVar5(short) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_ShortVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_ShortVar5() * @model * @generated */ short getShortVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getShortVar5 Short Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getShortVar5 Short Var5}' attribute. * * * @param value the new value of the 'Short Var5' attribute. @@ -336,14 +336,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var1' attribute. * @see #setIntVar1(int) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_IntVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar1() * @model * @generated */ int getIntVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar1 Int Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar1 Int Var1}' attribute. * * * @param value the new value of the 'Int Var1' attribute. @@ -362,14 +362,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var2' attribute. * @see #setIntVar2(int) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_IntVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar2() * @model * @generated */ int getIntVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar2 Int Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar2 Int Var2}' attribute. * * * @param value the new value of the 'Int Var2' attribute. @@ -388,14 +388,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var3' attribute. * @see #setIntVar3(int) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_IntVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar3() * @model * @generated */ int getIntVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar3 Int Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar3 Int Var3}' attribute. * * * @param value the new value of the 'Int Var3' attribute. @@ -414,14 +414,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var4' attribute. * @see #setIntVar4(int) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_IntVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar4() * @model * @generated */ int getIntVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar4 Int Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar4 Int Var4}' attribute. * * * @param value the new value of the 'Int Var4' attribute. @@ -440,14 +440,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Int Var5' attribute. * @see #setIntVar5(int) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_IntVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_IntVar5() * @model * @generated */ int getIntVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getIntVar5 Int Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getIntVar5 Int Var5}' attribute. * * * @param value the new value of the 'Int Var5' attribute. @@ -466,14 +466,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var1' attribute. * @see #setCharVar1(char) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_CharVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar1() * @model * @generated */ char getCharVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar1 Char Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar1 Char Var1}' attribute. * * * @param value the new value of the 'Char Var1' attribute. @@ -492,14 +492,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var2' attribute. * @see #setCharVar2(char) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_CharVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar2() * @model * @generated */ char getCharVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar2 Char Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar2 Char Var2}' attribute. * * * @param value the new value of the 'Char Var2' attribute. @@ -518,14 +518,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var3' attribute. * @see #setCharVar3(char) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_CharVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar3() * @model * @generated */ char getCharVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar3 Char Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar3 Char Var3}' attribute. * * * @param value the new value of the 'Char Var3' attribute. @@ -544,14 +544,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var4' attribute. * @see #setCharVar4(char) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_CharVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar4() * @model * @generated */ char getCharVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar4 Char Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar4 Char Var4}' attribute. * * * @param value the new value of the 'Char Var4' attribute. @@ -570,14 +570,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Char Var5' attribute. * @see #setCharVar5(char) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_CharVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_CharVar5() * @model * @generated */ char getCharVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getCharVar5 Char Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getCharVar5 Char Var5}' attribute. * * * @param value the new value of the 'Char Var5' attribute. @@ -596,14 +596,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var1' attribute. * @see #setLongVar1(long) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_LongVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar1() * @model * @generated */ long getLongVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar1 Long Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar1 Long Var1}' attribute. * * * @param value the new value of the 'Long Var1' attribute. @@ -622,14 +622,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var2' attribute. * @see #setLongVar2(long) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_LongVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar2() * @model * @generated */ long getLongVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar2 Long Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar2 Long Var2}' attribute. * * * @param value the new value of the 'Long Var2' attribute. @@ -648,14 +648,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var3' attribute. * @see #setLongVar3(long) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_LongVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar3() * @model * @generated */ long getLongVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar3 Long Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar3 Long Var3}' attribute. * * * @param value the new value of the 'Long Var3' attribute. @@ -674,14 +674,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var4' attribute. * @see #setLongVar4(long) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_LongVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar4() * @model * @generated */ long getLongVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar4 Long Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar4 Long Var4}' attribute. * * * @param value the new value of the 'Long Var4' attribute. @@ -700,14 +700,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Long Var5' attribute. * @see #setLongVar5(long) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_LongVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_LongVar5() * @model * @generated */ long getLongVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getLongVar5 Long Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getLongVar5 Long Var5}' attribute. * * * @param value the new value of the 'Long Var5' attribute. @@ -726,14 +726,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var1' attribute. * @see #setFloatVar1(float) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar1() * @model * @generated */ float getFloatVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar1 Float Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar1 Float Var1}' attribute. * * * @param value the new value of the 'Float Var1' attribute. @@ -752,14 +752,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var2' attribute. * @see #setFloatVar2(float) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar2() * @model * @generated */ float getFloatVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar2 Float Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar2 Float Var2}' attribute. * * * @param value the new value of the 'Float Var2' attribute. @@ -778,14 +778,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var3' attribute. * @see #setFloatVar3(float) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar3() * @model * @generated */ float getFloatVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar3 Float Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar3 Float Var3}' attribute. * * * @param value the new value of the 'Float Var3' attribute. @@ -804,14 +804,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var4' attribute. * @see #setFloatVar4(float) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar4() * @model * @generated */ float getFloatVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar4 Float Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar4 Float Var4}' attribute. * * * @param value the new value of the 'Float Var4' attribute. @@ -830,14 +830,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Float Var5' attribute. * @see #setFloatVar5(float) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_FloatVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_FloatVar5() * @model * @generated */ float getFloatVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getFloatVar5 Float Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getFloatVar5 Float Var5}' attribute. * * * @param value the new value of the 'Float Var5' attribute. @@ -856,14 +856,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var1' attribute. * @see #setDoubleVar1(double) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar1() * @model * @generated */ double getDoubleVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar1 Double Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar1 Double Var1}' attribute. * * * @param value the new value of the 'Double Var1' attribute. @@ -882,14 +882,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var2' attribute. * @see #setDoubleVar2(double) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar2() * @model * @generated */ double getDoubleVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar2 Double Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar2 Double Var2}' attribute. * * * @param value the new value of the 'Double Var2' attribute. @@ -908,14 +908,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var3' attribute. * @see #setDoubleVar3(double) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar3() * @model * @generated */ double getDoubleVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar3 Double Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar3 Double Var3}' attribute. * * * @param value the new value of the 'Double Var3' attribute. @@ -934,14 +934,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var4' attribute. * @see #setDoubleVar4(double) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar4() * @model * @generated */ double getDoubleVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar4 Double Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar4 Double Var4}' attribute. * * * @param value the new value of the 'Double Var4' attribute. @@ -960,14 +960,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Double Var5' attribute. * @see #setDoubleVar5(double) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_DoubleVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_DoubleVar5() * @model * @generated */ double getDoubleVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getDoubleVar5 Double Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getDoubleVar5 Double Var5}' attribute. * * * @param value the new value of the 'Double Var5' attribute. @@ -986,14 +986,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var1' attribute. * @see #setBooleanVar1(boolean) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar1() * @model * @generated */ boolean isBooleanVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar1 Boolean Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar1 Boolean Var1}' attribute. * * * @param value the new value of the 'Boolean Var1' attribute. @@ -1012,14 +1012,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var2' attribute. * @see #setBooleanVar2(boolean) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar2() * @model * @generated */ boolean isBooleanVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar2 Boolean Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar2 Boolean Var2}' attribute. * * * @param value the new value of the 'Boolean Var2' attribute. @@ -1038,14 +1038,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var3' attribute. * @see #setBooleanVar3(boolean) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar3() * @model * @generated */ boolean isBooleanVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar3 Boolean Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar3 Boolean Var3}' attribute. * * * @param value the new value of the 'Boolean Var3' attribute. @@ -1064,14 +1064,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var4' attribute. * @see #setBooleanVar4(boolean) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar4() * @model * @generated */ boolean isBooleanVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar4 Boolean Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar4 Boolean Var4}' attribute. * * * @param value the new value of the 'Boolean Var4' attribute. @@ -1090,14 +1090,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'Boolean Var5' attribute. * @see #setBooleanVar5(boolean) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_BooleanVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_BooleanVar5() * @model * @generated */ boolean isBooleanVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#isBooleanVar5 Boolean Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#isBooleanVar5 Boolean Var5}' attribute. * * * @param value the new value of the 'Boolean Var5' attribute. @@ -1116,14 +1116,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var1' attribute. * @see #setStringVar1(String) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_StringVar1() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar1() * @model * @generated */ String getStringVar1(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar1 String Var1}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar1 String Var1}' attribute. * * * @param value the new value of the 'String Var1' attribute. @@ -1142,14 +1142,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var2' attribute. * @see #setStringVar2(String) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_StringVar2() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar2() * @model * @generated */ String getStringVar2(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar2 String Var2}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar2 String Var2}' attribute. * * * @param value the new value of the 'String Var2' attribute. @@ -1168,14 +1168,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var3' attribute. * @see #setStringVar3(String) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_StringVar3() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar3() * @model * @generated */ String getStringVar3(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar3 String Var3}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar3 String Var3}' attribute. * * * @param value the new value of the 'String Var3' attribute. @@ -1194,14 +1194,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var4' attribute. * @see #setStringVar4(String) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_StringVar4() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar4() * @model * @generated */ String getStringVar4(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar4 String Var4}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar4 String Var4}' attribute. * * * @param value the new value of the 'String Var4' attribute. @@ -1220,14 +1220,14 @@ public interface File extends IModifiable, IContainer { * * @return the value of the 'String Var5' attribute. * @see #setStringVar5(String) - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getFile_StringVar5() + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage#getSketch_StringVar5() * @model * @generated */ String getStringVar5(); /** - * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File#getStringVar5 String Var5}' attribute. + * Sets the value of the '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch#getStringVar5 String Var5}' attribute. * * * @param value the new value of the 'String Var5' attribute. @@ -1236,4 +1236,4 @@ public interface File extends IModifiable, IContainer { */ void setStringVar5(String value); -} // File +} // Sketch diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactFactoryImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactFactoryImpl.java index 4c0ad66d9..cadfd3477 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactFactoryImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactFactoryImpl.java @@ -57,7 +57,7 @@ public ArtefactFactoryImpl() { public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ArtefactPackage.DIAGRAM: return createDiagram(); - case ArtefactPackage.FILE: return createFile(); + case ArtefactPackage.SKETCH: return createSketch(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } @@ -78,9 +78,9 @@ public Diagram createDiagram() { * * @generated */ - public File createFile() { - FileImpl file = new FileImpl(); - return file; + public Sketch createSketch() { + SketchImpl sketch = new SketchImpl(); + return sketch; } /** diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactPackageImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactPackageImpl.java index 94f01a4bd..f540d894f 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactPackageImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/ArtefactPackageImpl.java @@ -5,8 +5,8 @@ import com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactFactory; import com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage; import com.specmate.migration.test.severalattributesadded.testmodel.artefact.Diagram; +import com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch; -import com.specmate.migration.test.severalattributesadded.testmodel.artefact.File; import com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage; import com.specmate.migration.test.severalattributesadded.testmodel.base.impl.BasePackageImpl; @@ -36,7 +36,7 @@ public class ArtefactPackageImpl extends EPackageImpl implements ArtefactPackage * * @generated */ - private EClass fileEClass = null; + private EClass sketchEClass = null; /** * Creates an instance of the model Package, registered with @@ -172,8 +172,8 @@ public EAttribute getDiagram_Booleanlinked() { * * @generated */ - public EClass getFile() { - return fileEClass; + public EClass getSketch() { + return sketchEClass; } /** @@ -181,8 +181,8 @@ public EClass getFile() { * * @generated */ - public EAttribute getFile_ByteVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(0); + public EAttribute getSketch_ByteVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(0); } /** @@ -190,8 +190,8 @@ public EAttribute getFile_ByteVar1() { * * @generated */ - public EAttribute getFile_ByteVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(1); + public EAttribute getSketch_ByteVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(1); } /** @@ -199,8 +199,8 @@ public EAttribute getFile_ByteVar2() { * * @generated */ - public EAttribute getFile_ByteVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(2); + public EAttribute getSketch_ByteVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(2); } /** @@ -208,8 +208,8 @@ public EAttribute getFile_ByteVar3() { * * @generated */ - public EAttribute getFile_ByteVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(3); + public EAttribute getSketch_ByteVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(3); } /** @@ -217,8 +217,8 @@ public EAttribute getFile_ByteVar4() { * * @generated */ - public EAttribute getFile_ByteVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(4); + public EAttribute getSketch_ByteVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(4); } /** @@ -226,8 +226,8 @@ public EAttribute getFile_ByteVar5() { * * @generated */ - public EAttribute getFile_ShortVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(5); + public EAttribute getSketch_ShortVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(5); } /** @@ -235,8 +235,8 @@ public EAttribute getFile_ShortVar1() { * * @generated */ - public EAttribute getFile_ShortVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(6); + public EAttribute getSketch_ShortVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(6); } /** @@ -244,8 +244,8 @@ public EAttribute getFile_ShortVar2() { * * @generated */ - public EAttribute getFile_ShortVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(7); + public EAttribute getSketch_ShortVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(7); } /** @@ -253,8 +253,8 @@ public EAttribute getFile_ShortVar3() { * * @generated */ - public EAttribute getFile_ShortVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(8); + public EAttribute getSketch_ShortVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(8); } /** @@ -262,8 +262,8 @@ public EAttribute getFile_ShortVar4() { * * @generated */ - public EAttribute getFile_ShortVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(9); + public EAttribute getSketch_ShortVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(9); } /** @@ -271,8 +271,8 @@ public EAttribute getFile_ShortVar5() { * * @generated */ - public EAttribute getFile_IntVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(10); + public EAttribute getSketch_IntVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(10); } /** @@ -280,8 +280,8 @@ public EAttribute getFile_IntVar1() { * * @generated */ - public EAttribute getFile_IntVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(11); + public EAttribute getSketch_IntVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(11); } /** @@ -289,8 +289,8 @@ public EAttribute getFile_IntVar2() { * * @generated */ - public EAttribute getFile_IntVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(12); + public EAttribute getSketch_IntVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(12); } /** @@ -298,8 +298,8 @@ public EAttribute getFile_IntVar3() { * * @generated */ - public EAttribute getFile_IntVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(13); + public EAttribute getSketch_IntVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(13); } /** @@ -307,8 +307,8 @@ public EAttribute getFile_IntVar4() { * * @generated */ - public EAttribute getFile_IntVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(14); + public EAttribute getSketch_IntVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(14); } /** @@ -316,8 +316,8 @@ public EAttribute getFile_IntVar5() { * * @generated */ - public EAttribute getFile_CharVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(15); + public EAttribute getSketch_CharVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(15); } /** @@ -325,8 +325,8 @@ public EAttribute getFile_CharVar1() { * * @generated */ - public EAttribute getFile_CharVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(16); + public EAttribute getSketch_CharVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(16); } /** @@ -334,8 +334,8 @@ public EAttribute getFile_CharVar2() { * * @generated */ - public EAttribute getFile_CharVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(17); + public EAttribute getSketch_CharVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(17); } /** @@ -343,8 +343,8 @@ public EAttribute getFile_CharVar3() { * * @generated */ - public EAttribute getFile_CharVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(18); + public EAttribute getSketch_CharVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(18); } /** @@ -352,8 +352,8 @@ public EAttribute getFile_CharVar4() { * * @generated */ - public EAttribute getFile_CharVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(19); + public EAttribute getSketch_CharVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(19); } /** @@ -361,8 +361,8 @@ public EAttribute getFile_CharVar5() { * * @generated */ - public EAttribute getFile_LongVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(20); + public EAttribute getSketch_LongVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(20); } /** @@ -370,8 +370,8 @@ public EAttribute getFile_LongVar1() { * * @generated */ - public EAttribute getFile_LongVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(21); + public EAttribute getSketch_LongVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(21); } /** @@ -379,8 +379,8 @@ public EAttribute getFile_LongVar2() { * * @generated */ - public EAttribute getFile_LongVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(22); + public EAttribute getSketch_LongVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(22); } /** @@ -388,8 +388,8 @@ public EAttribute getFile_LongVar3() { * * @generated */ - public EAttribute getFile_LongVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(23); + public EAttribute getSketch_LongVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(23); } /** @@ -397,8 +397,8 @@ public EAttribute getFile_LongVar4() { * * @generated */ - public EAttribute getFile_LongVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(24); + public EAttribute getSketch_LongVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(24); } /** @@ -406,8 +406,8 @@ public EAttribute getFile_LongVar5() { * * @generated */ - public EAttribute getFile_FloatVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(25); + public EAttribute getSketch_FloatVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(25); } /** @@ -415,8 +415,8 @@ public EAttribute getFile_FloatVar1() { * * @generated */ - public EAttribute getFile_FloatVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(26); + public EAttribute getSketch_FloatVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(26); } /** @@ -424,8 +424,8 @@ public EAttribute getFile_FloatVar2() { * * @generated */ - public EAttribute getFile_FloatVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(27); + public EAttribute getSketch_FloatVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(27); } /** @@ -433,8 +433,8 @@ public EAttribute getFile_FloatVar3() { * * @generated */ - public EAttribute getFile_FloatVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(28); + public EAttribute getSketch_FloatVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(28); } /** @@ -442,8 +442,8 @@ public EAttribute getFile_FloatVar4() { * * @generated */ - public EAttribute getFile_FloatVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(29); + public EAttribute getSketch_FloatVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(29); } /** @@ -451,8 +451,8 @@ public EAttribute getFile_FloatVar5() { * * @generated */ - public EAttribute getFile_DoubleVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(30); + public EAttribute getSketch_DoubleVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(30); } /** @@ -460,8 +460,8 @@ public EAttribute getFile_DoubleVar1() { * * @generated */ - public EAttribute getFile_DoubleVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(31); + public EAttribute getSketch_DoubleVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(31); } /** @@ -469,8 +469,8 @@ public EAttribute getFile_DoubleVar2() { * * @generated */ - public EAttribute getFile_DoubleVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(32); + public EAttribute getSketch_DoubleVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(32); } /** @@ -478,8 +478,8 @@ public EAttribute getFile_DoubleVar3() { * * @generated */ - public EAttribute getFile_DoubleVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(33); + public EAttribute getSketch_DoubleVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(33); } /** @@ -487,8 +487,8 @@ public EAttribute getFile_DoubleVar4() { * * @generated */ - public EAttribute getFile_DoubleVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(34); + public EAttribute getSketch_DoubleVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(34); } /** @@ -496,8 +496,8 @@ public EAttribute getFile_DoubleVar5() { * * @generated */ - public EAttribute getFile_BooleanVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(35); + public EAttribute getSketch_BooleanVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(35); } /** @@ -505,8 +505,8 @@ public EAttribute getFile_BooleanVar1() { * * @generated */ - public EAttribute getFile_BooleanVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(36); + public EAttribute getSketch_BooleanVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(36); } /** @@ -514,8 +514,8 @@ public EAttribute getFile_BooleanVar2() { * * @generated */ - public EAttribute getFile_BooleanVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(37); + public EAttribute getSketch_BooleanVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(37); } /** @@ -523,8 +523,8 @@ public EAttribute getFile_BooleanVar3() { * * @generated */ - public EAttribute getFile_BooleanVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(38); + public EAttribute getSketch_BooleanVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(38); } /** @@ -532,8 +532,8 @@ public EAttribute getFile_BooleanVar4() { * * @generated */ - public EAttribute getFile_BooleanVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(39); + public EAttribute getSketch_BooleanVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(39); } /** @@ -541,8 +541,8 @@ public EAttribute getFile_BooleanVar5() { * * @generated */ - public EAttribute getFile_StringVar1() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(40); + public EAttribute getSketch_StringVar1() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(40); } /** @@ -550,8 +550,8 @@ public EAttribute getFile_StringVar1() { * * @generated */ - public EAttribute getFile_StringVar2() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(41); + public EAttribute getSketch_StringVar2() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(41); } /** @@ -559,8 +559,8 @@ public EAttribute getFile_StringVar2() { * * @generated */ - public EAttribute getFile_StringVar3() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(42); + public EAttribute getSketch_StringVar3() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(42); } /** @@ -568,8 +568,8 @@ public EAttribute getFile_StringVar3() { * * @generated */ - public EAttribute getFile_StringVar4() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(43); + public EAttribute getSketch_StringVar4() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(43); } /** @@ -577,8 +577,8 @@ public EAttribute getFile_StringVar4() { * * @generated */ - public EAttribute getFile_StringVar5() { - return (EAttribute)fileEClass.getEStructuralFeatures().get(44); + public EAttribute getSketch_StringVar5() { + return (EAttribute)sketchEClass.getEStructuralFeatures().get(44); } /** @@ -617,52 +617,52 @@ public void createPackageContents() { createEAttribute(diagramEClass, DIAGRAM__DOUBLELENGTH); createEAttribute(diagramEClass, DIAGRAM__BOOLEANLINKED); - fileEClass = createEClass(FILE); - createEAttribute(fileEClass, FILE__BYTE_VAR1); - createEAttribute(fileEClass, FILE__BYTE_VAR2); - createEAttribute(fileEClass, FILE__BYTE_VAR3); - createEAttribute(fileEClass, FILE__BYTE_VAR4); - createEAttribute(fileEClass, FILE__BYTE_VAR5); - createEAttribute(fileEClass, FILE__SHORT_VAR1); - createEAttribute(fileEClass, FILE__SHORT_VAR2); - createEAttribute(fileEClass, FILE__SHORT_VAR3); - createEAttribute(fileEClass, FILE__SHORT_VAR4); - createEAttribute(fileEClass, FILE__SHORT_VAR5); - createEAttribute(fileEClass, FILE__INT_VAR1); - createEAttribute(fileEClass, FILE__INT_VAR2); - createEAttribute(fileEClass, FILE__INT_VAR3); - createEAttribute(fileEClass, FILE__INT_VAR4); - createEAttribute(fileEClass, FILE__INT_VAR5); - createEAttribute(fileEClass, FILE__CHAR_VAR1); - createEAttribute(fileEClass, FILE__CHAR_VAR2); - createEAttribute(fileEClass, FILE__CHAR_VAR3); - createEAttribute(fileEClass, FILE__CHAR_VAR4); - createEAttribute(fileEClass, FILE__CHAR_VAR5); - createEAttribute(fileEClass, FILE__LONG_VAR1); - createEAttribute(fileEClass, FILE__LONG_VAR2); - createEAttribute(fileEClass, FILE__LONG_VAR3); - createEAttribute(fileEClass, FILE__LONG_VAR4); - createEAttribute(fileEClass, FILE__LONG_VAR5); - createEAttribute(fileEClass, FILE__FLOAT_VAR1); - createEAttribute(fileEClass, FILE__FLOAT_VAR2); - createEAttribute(fileEClass, FILE__FLOAT_VAR3); - createEAttribute(fileEClass, FILE__FLOAT_VAR4); - createEAttribute(fileEClass, FILE__FLOAT_VAR5); - createEAttribute(fileEClass, FILE__DOUBLE_VAR1); - createEAttribute(fileEClass, FILE__DOUBLE_VAR2); - createEAttribute(fileEClass, FILE__DOUBLE_VAR3); - createEAttribute(fileEClass, FILE__DOUBLE_VAR4); - createEAttribute(fileEClass, FILE__DOUBLE_VAR5); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR1); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR2); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR3); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR4); - createEAttribute(fileEClass, FILE__BOOLEAN_VAR5); - createEAttribute(fileEClass, FILE__STRING_VAR1); - createEAttribute(fileEClass, FILE__STRING_VAR2); - createEAttribute(fileEClass, FILE__STRING_VAR3); - createEAttribute(fileEClass, FILE__STRING_VAR4); - createEAttribute(fileEClass, FILE__STRING_VAR5); + sketchEClass = createEClass(SKETCH); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR1); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR2); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR3); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR4); + createEAttribute(sketchEClass, SKETCH__BYTE_VAR5); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR1); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR2); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR3); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR4); + createEAttribute(sketchEClass, SKETCH__SHORT_VAR5); + createEAttribute(sketchEClass, SKETCH__INT_VAR1); + createEAttribute(sketchEClass, SKETCH__INT_VAR2); + createEAttribute(sketchEClass, SKETCH__INT_VAR3); + createEAttribute(sketchEClass, SKETCH__INT_VAR4); + createEAttribute(sketchEClass, SKETCH__INT_VAR5); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR1); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR2); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR3); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR4); + createEAttribute(sketchEClass, SKETCH__CHAR_VAR5); + createEAttribute(sketchEClass, SKETCH__LONG_VAR1); + createEAttribute(sketchEClass, SKETCH__LONG_VAR2); + createEAttribute(sketchEClass, SKETCH__LONG_VAR3); + createEAttribute(sketchEClass, SKETCH__LONG_VAR4); + createEAttribute(sketchEClass, SKETCH__LONG_VAR5); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR1); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR2); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR3); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR4); + createEAttribute(sketchEClass, SKETCH__FLOAT_VAR5); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR1); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR2); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR3); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR4); + createEAttribute(sketchEClass, SKETCH__DOUBLE_VAR5); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR1); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR2); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR3); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR4); + createEAttribute(sketchEClass, SKETCH__BOOLEAN_VAR5); + createEAttribute(sketchEClass, SKETCH__STRING_VAR1); + createEAttribute(sketchEClass, SKETCH__STRING_VAR2); + createEAttribute(sketchEClass, SKETCH__STRING_VAR3); + createEAttribute(sketchEClass, SKETCH__STRING_VAR4); + createEAttribute(sketchEClass, SKETCH__STRING_VAR5); } /** @@ -698,8 +698,8 @@ public void initializePackageContents() { // Add supertypes to classes diagramEClass.getESuperTypes().add(theBasePackage.getIModifiable()); diagramEClass.getESuperTypes().add(theBasePackage.getIContainer()); - fileEClass.getESuperTypes().add(theBasePackage.getIModifiable()); - fileEClass.getESuperTypes().add(theBasePackage.getIContainer()); + sketchEClass.getESuperTypes().add(theBasePackage.getIModifiable()); + sketchEClass.getESuperTypes().add(theBasePackage.getIContainer()); // Initialize classes, features, and operations; add parameters initEClass(diagramEClass, Diagram.class, "Diagram", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); @@ -710,52 +710,52 @@ public void initializePackageContents() { initEAttribute(getDiagram_Doublelength(), ecorePackage.getEDouble(), "doublelength", null, 0, 1, Diagram.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); initEAttribute(getDiagram_Booleanlinked(), ecorePackage.getEBoolean(), "booleanlinked", null, 0, 1, Diagram.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEClass(fileEClass, File.class, "File", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); - initEAttribute(getFile_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); - initEAttribute(getFile_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, File.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEClass(sketchEClass, Sketch.class, "Sketch", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSketch_ByteVar1(), ecorePackage.getEByte(), "byteVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar2(), ecorePackage.getEByte(), "byteVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar3(), ecorePackage.getEByte(), "byteVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar4(), ecorePackage.getEByte(), "byteVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ByteVar5(), ecorePackage.getEByte(), "byteVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar1(), ecorePackage.getEShort(), "shortVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar2(), ecorePackage.getEShort(), "shortVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar3(), ecorePackage.getEShort(), "shortVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar4(), ecorePackage.getEShort(), "shortVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_ShortVar5(), ecorePackage.getEShort(), "shortVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar1(), ecorePackage.getEInt(), "intVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar2(), ecorePackage.getEInt(), "intVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar3(), ecorePackage.getEInt(), "intVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar4(), ecorePackage.getEInt(), "intVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_IntVar5(), ecorePackage.getEInt(), "intVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar1(), ecorePackage.getEChar(), "charVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar2(), ecorePackage.getEChar(), "charVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar3(), ecorePackage.getEChar(), "charVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar4(), ecorePackage.getEChar(), "charVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_CharVar5(), ecorePackage.getEChar(), "charVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar1(), ecorePackage.getELong(), "longVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar2(), ecorePackage.getELong(), "longVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar3(), ecorePackage.getELong(), "longVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar4(), ecorePackage.getELong(), "longVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_LongVar5(), ecorePackage.getELong(), "longVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar1(), ecorePackage.getEFloat(), "floatVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar2(), ecorePackage.getEFloat(), "floatVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar3(), ecorePackage.getEFloat(), "floatVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar4(), ecorePackage.getEFloat(), "floatVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_FloatVar5(), ecorePackage.getEFloat(), "floatVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar1(), ecorePackage.getEDouble(), "doubleVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar2(), ecorePackage.getEDouble(), "doubleVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar3(), ecorePackage.getEDouble(), "doubleVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar4(), ecorePackage.getEDouble(), "doubleVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_DoubleVar5(), ecorePackage.getEDouble(), "doubleVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar1(), ecorePackage.getEBoolean(), "booleanVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar2(), ecorePackage.getEBoolean(), "booleanVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar3(), ecorePackage.getEBoolean(), "booleanVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar4(), ecorePackage.getEBoolean(), "booleanVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_BooleanVar5(), ecorePackage.getEBoolean(), "booleanVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar1(), ecorePackage.getEString(), "stringVar1", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar2(), ecorePackage.getEString(), "stringVar2", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar3(), ecorePackage.getEString(), "stringVar3", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar4(), ecorePackage.getEString(), "stringVar4", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSketch_StringVar5(), ecorePackage.getEString(), "stringVar5", null, 0, 1, Sketch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); // Create resource createResource(eNS_URI); diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/FileImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/SketchImpl.java similarity index 63% rename from bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/FileImpl.java rename to bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/SketchImpl.java index 1488e494b..64c2d6934 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/FileImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/impl/SketchImpl.java @@ -3,7 +3,7 @@ package com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl; import com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage; -import com.specmate.migration.test.severalattributesadded.testmodel.artefact.File; +import com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch; import com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage; import com.specmate.migration.test.severalattributesadded.testmodel.base.IContainer; @@ -26,66 +26,66 @@ /** * - * An implementation of the model object 'File'. + * An implementation of the model object 'Sketch'. * *

* The following features are implemented: *

*
    - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#isTested Tested}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getName Name}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getId Id}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getContents Contents}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getByteVar1 Byte Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getByteVar2 Byte Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getByteVar3 Byte Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getByteVar4 Byte Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getByteVar5 Byte Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getShortVar1 Short Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getShortVar2 Short Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getShortVar3 Short Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getShortVar4 Short Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getShortVar5 Short Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getIntVar1 Int Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getIntVar2 Int Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getIntVar3 Int Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getIntVar4 Int Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getIntVar5 Int Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getCharVar1 Char Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getCharVar2 Char Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getCharVar3 Char Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getCharVar4 Char Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getCharVar5 Char Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getLongVar1 Long Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getLongVar2 Long Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getLongVar3 Long Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getLongVar4 Long Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getLongVar5 Long Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getFloatVar1 Float Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getFloatVar2 Float Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getFloatVar3 Float Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getFloatVar4 Float Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getFloatVar5 Float Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getDoubleVar1 Double Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getDoubleVar2 Double Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getDoubleVar3 Double Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getDoubleVar4 Double Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getDoubleVar5 Double Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#isBooleanVar1 Boolean Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#isBooleanVar2 Boolean Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#isBooleanVar3 Boolean Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#isBooleanVar4 Boolean Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#isBooleanVar5 Boolean Var5}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getStringVar1 String Var1}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getStringVar2 String Var2}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getStringVar3 String Var3}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getStringVar4 String Var4}
  • - *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.FileImpl#getStringVar5 String Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#isTested Tested}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getName Name}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getId Id}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getContents Contents}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getByteVar1 Byte Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getByteVar2 Byte Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getByteVar3 Byte Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getByteVar4 Byte Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getByteVar5 Byte Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getShortVar1 Short Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getShortVar2 Short Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getShortVar3 Short Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getShortVar4 Short Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getShortVar5 Short Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getIntVar1 Int Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getIntVar2 Int Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getIntVar3 Int Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getIntVar4 Int Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getIntVar5 Int Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getCharVar1 Char Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getCharVar2 Char Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getCharVar3 Char Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getCharVar4 Char Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getCharVar5 Char Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getLongVar1 Long Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getLongVar2 Long Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getLongVar3 Long Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getLongVar4 Long Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getLongVar5 Long Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getFloatVar1 Float Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getFloatVar2 Float Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getFloatVar3 Float Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getFloatVar4 Float Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getFloatVar5 Float Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getDoubleVar1 Double Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getDoubleVar2 Double Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getDoubleVar3 Double Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getDoubleVar4 Double Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getDoubleVar5 Double Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#isBooleanVar1 Boolean Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#isBooleanVar2 Boolean Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#isBooleanVar3 Boolean Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#isBooleanVar4 Boolean Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#isBooleanVar5 Boolean Var5}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getStringVar1 String Var1}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getStringVar2 String Var2}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getStringVar3 String Var3}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getStringVar4 String Var4}
  • + *
  • {@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.impl.SketchImpl#getStringVar5 String Var5}
  • *
* * @generated */ -public class FileImpl extends MinimalEObjectImpl.Container implements File { +public class SketchImpl extends MinimalEObjectImpl.Container implements Sketch { /** * The default value of the '{@link #isTested() Tested}' attribute. * @@ -571,7 +571,7 @@ public class FileImpl extends MinimalEObjectImpl.Container implements File { * * @generated */ - protected FileImpl() { + protected SketchImpl() { super(); } @@ -582,7 +582,7 @@ protected FileImpl() { */ @Override protected EClass eStaticClass() { - return ArtefactPackage.Literals.FILE; + return ArtefactPackage.Literals.SKETCH; } /** @@ -601,7 +601,7 @@ protected int eStaticFeatureCount() { * @generated */ public boolean isTested() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, true, true); } /** @@ -610,7 +610,7 @@ public boolean isTested() { * @generated */ public void setTested(boolean newTested) { - eDynamicSet(ArtefactPackage.FILE__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); + eDynamicSet(ArtefactPackage.SKETCH__TESTED, BasePackage.Literals.ITESTABLE__TESTED, newTested); } /** @@ -619,7 +619,7 @@ public void setTested(boolean newTested) { * @generated */ public String getName() { - return (String)eDynamicGet(ArtefactPackage.FILE__NAME, BasePackage.Literals.INAMED__NAME, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__NAME, BasePackage.Literals.INAMED__NAME, true, true); } /** @@ -628,7 +628,7 @@ public String getName() { * @generated */ public void setName(String newName) { - eDynamicSet(ArtefactPackage.FILE__NAME, BasePackage.Literals.INAMED__NAME, newName); + eDynamicSet(ArtefactPackage.SKETCH__NAME, BasePackage.Literals.INAMED__NAME, newName); } /** @@ -637,7 +637,7 @@ public void setName(String newName) { * @generated */ public String getId() { - return (String)eDynamicGet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, true, true); } /** @@ -646,7 +646,7 @@ public String getId() { * @generated */ public void setId(String newId) { - eDynamicSet(ArtefactPackage.FILE__ID, BasePackage.Literals.IID__ID, newId); + eDynamicSet(ArtefactPackage.SKETCH__ID, BasePackage.Literals.IID__ID, newId); } /** @@ -656,7 +656,7 @@ public void setId(String newId) { */ @SuppressWarnings("unchecked") public EList getContents() { - return (EList)eDynamicGet(ArtefactPackage.FILE__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); + return (EList)eDynamicGet(ArtefactPackage.SKETCH__CONTENTS, BasePackage.Literals.ICONTAINER__CONTENTS, true, true); } /** @@ -665,7 +665,7 @@ public EList getContents() { * @generated */ public byte getByteVar1() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, true, true); } /** @@ -674,7 +674,7 @@ public byte getByteVar1() { * @generated */ public void setByteVar1(byte newByteVar1) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR1, ArtefactPackage.Literals.FILE__BYTE_VAR1, newByteVar1); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR1, ArtefactPackage.Literals.SKETCH__BYTE_VAR1, newByteVar1); } /** @@ -683,7 +683,7 @@ public void setByteVar1(byte newByteVar1) { * @generated */ public byte getByteVar2() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, true, true); } /** @@ -692,7 +692,7 @@ public byte getByteVar2() { * @generated */ public void setByteVar2(byte newByteVar2) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR2, ArtefactPackage.Literals.FILE__BYTE_VAR2, newByteVar2); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR2, ArtefactPackage.Literals.SKETCH__BYTE_VAR2, newByteVar2); } /** @@ -701,7 +701,7 @@ public void setByteVar2(byte newByteVar2) { * @generated */ public byte getByteVar3() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, true, true); } /** @@ -710,7 +710,7 @@ public byte getByteVar3() { * @generated */ public void setByteVar3(byte newByteVar3) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR3, ArtefactPackage.Literals.FILE__BYTE_VAR3, newByteVar3); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR3, ArtefactPackage.Literals.SKETCH__BYTE_VAR3, newByteVar3); } /** @@ -719,7 +719,7 @@ public void setByteVar3(byte newByteVar3) { * @generated */ public byte getByteVar4() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, true, true); } /** @@ -728,7 +728,7 @@ public byte getByteVar4() { * @generated */ public void setByteVar4(byte newByteVar4) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR4, ArtefactPackage.Literals.FILE__BYTE_VAR4, newByteVar4); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR4, ArtefactPackage.Literals.SKETCH__BYTE_VAR4, newByteVar4); } /** @@ -737,7 +737,7 @@ public void setByteVar4(byte newByteVar4) { * @generated */ public byte getByteVar5() { - return (Byte)eDynamicGet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, true, true); + return (Byte)eDynamicGet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, true, true); } /** @@ -746,7 +746,7 @@ public byte getByteVar5() { * @generated */ public void setByteVar5(byte newByteVar5) { - eDynamicSet(ArtefactPackage.FILE__BYTE_VAR5, ArtefactPackage.Literals.FILE__BYTE_VAR5, newByteVar5); + eDynamicSet(ArtefactPackage.SKETCH__BYTE_VAR5, ArtefactPackage.Literals.SKETCH__BYTE_VAR5, newByteVar5); } /** @@ -755,7 +755,7 @@ public void setByteVar5(byte newByteVar5) { * @generated */ public short getShortVar1() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, true, true); } /** @@ -764,7 +764,7 @@ public short getShortVar1() { * @generated */ public void setShortVar1(short newShortVar1) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR1, ArtefactPackage.Literals.FILE__SHORT_VAR1, newShortVar1); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR1, ArtefactPackage.Literals.SKETCH__SHORT_VAR1, newShortVar1); } /** @@ -773,7 +773,7 @@ public void setShortVar1(short newShortVar1) { * @generated */ public short getShortVar2() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, true, true); } /** @@ -782,7 +782,7 @@ public short getShortVar2() { * @generated */ public void setShortVar2(short newShortVar2) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR2, ArtefactPackage.Literals.FILE__SHORT_VAR2, newShortVar2); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR2, ArtefactPackage.Literals.SKETCH__SHORT_VAR2, newShortVar2); } /** @@ -791,7 +791,7 @@ public void setShortVar2(short newShortVar2) { * @generated */ public short getShortVar3() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, true, true); } /** @@ -800,7 +800,7 @@ public short getShortVar3() { * @generated */ public void setShortVar3(short newShortVar3) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR3, ArtefactPackage.Literals.FILE__SHORT_VAR3, newShortVar3); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR3, ArtefactPackage.Literals.SKETCH__SHORT_VAR3, newShortVar3); } /** @@ -809,7 +809,7 @@ public void setShortVar3(short newShortVar3) { * @generated */ public short getShortVar4() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, true, true); } /** @@ -818,7 +818,7 @@ public short getShortVar4() { * @generated */ public void setShortVar4(short newShortVar4) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR4, ArtefactPackage.Literals.FILE__SHORT_VAR4, newShortVar4); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR4, ArtefactPackage.Literals.SKETCH__SHORT_VAR4, newShortVar4); } /** @@ -827,7 +827,7 @@ public void setShortVar4(short newShortVar4) { * @generated */ public short getShortVar5() { - return (Short)eDynamicGet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, true, true); + return (Short)eDynamicGet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, true, true); } /** @@ -836,7 +836,7 @@ public short getShortVar5() { * @generated */ public void setShortVar5(short newShortVar5) { - eDynamicSet(ArtefactPackage.FILE__SHORT_VAR5, ArtefactPackage.Literals.FILE__SHORT_VAR5, newShortVar5); + eDynamicSet(ArtefactPackage.SKETCH__SHORT_VAR5, ArtefactPackage.Literals.SKETCH__SHORT_VAR5, newShortVar5); } /** @@ -845,7 +845,7 @@ public void setShortVar5(short newShortVar5) { * @generated */ public int getIntVar1() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, true, true); } /** @@ -854,7 +854,7 @@ public int getIntVar1() { * @generated */ public void setIntVar1(int newIntVar1) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR1, ArtefactPackage.Literals.FILE__INT_VAR1, newIntVar1); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR1, ArtefactPackage.Literals.SKETCH__INT_VAR1, newIntVar1); } /** @@ -863,7 +863,7 @@ public void setIntVar1(int newIntVar1) { * @generated */ public int getIntVar2() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, true, true); } /** @@ -872,7 +872,7 @@ public int getIntVar2() { * @generated */ public void setIntVar2(int newIntVar2) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR2, ArtefactPackage.Literals.FILE__INT_VAR2, newIntVar2); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR2, ArtefactPackage.Literals.SKETCH__INT_VAR2, newIntVar2); } /** @@ -881,7 +881,7 @@ public void setIntVar2(int newIntVar2) { * @generated */ public int getIntVar3() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, true, true); } /** @@ -890,7 +890,7 @@ public int getIntVar3() { * @generated */ public void setIntVar3(int newIntVar3) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR3, ArtefactPackage.Literals.FILE__INT_VAR3, newIntVar3); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR3, ArtefactPackage.Literals.SKETCH__INT_VAR3, newIntVar3); } /** @@ -899,7 +899,7 @@ public void setIntVar3(int newIntVar3) { * @generated */ public int getIntVar4() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, true, true); } /** @@ -908,7 +908,7 @@ public int getIntVar4() { * @generated */ public void setIntVar4(int newIntVar4) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR4, ArtefactPackage.Literals.FILE__INT_VAR4, newIntVar4); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR4, ArtefactPackage.Literals.SKETCH__INT_VAR4, newIntVar4); } /** @@ -917,7 +917,7 @@ public void setIntVar4(int newIntVar4) { * @generated */ public int getIntVar5() { - return (Integer)eDynamicGet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, true, true); + return (Integer)eDynamicGet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, true, true); } /** @@ -926,7 +926,7 @@ public int getIntVar5() { * @generated */ public void setIntVar5(int newIntVar5) { - eDynamicSet(ArtefactPackage.FILE__INT_VAR5, ArtefactPackage.Literals.FILE__INT_VAR5, newIntVar5); + eDynamicSet(ArtefactPackage.SKETCH__INT_VAR5, ArtefactPackage.Literals.SKETCH__INT_VAR5, newIntVar5); } /** @@ -935,7 +935,7 @@ public void setIntVar5(int newIntVar5) { * @generated */ public char getCharVar1() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, true, true); } /** @@ -944,7 +944,7 @@ public char getCharVar1() { * @generated */ public void setCharVar1(char newCharVar1) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR1, ArtefactPackage.Literals.FILE__CHAR_VAR1, newCharVar1); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR1, ArtefactPackage.Literals.SKETCH__CHAR_VAR1, newCharVar1); } /** @@ -953,7 +953,7 @@ public void setCharVar1(char newCharVar1) { * @generated */ public char getCharVar2() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, true, true); } /** @@ -962,7 +962,7 @@ public char getCharVar2() { * @generated */ public void setCharVar2(char newCharVar2) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR2, ArtefactPackage.Literals.FILE__CHAR_VAR2, newCharVar2); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR2, ArtefactPackage.Literals.SKETCH__CHAR_VAR2, newCharVar2); } /** @@ -971,7 +971,7 @@ public void setCharVar2(char newCharVar2) { * @generated */ public char getCharVar3() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, true, true); } /** @@ -980,7 +980,7 @@ public char getCharVar3() { * @generated */ public void setCharVar3(char newCharVar3) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR3, ArtefactPackage.Literals.FILE__CHAR_VAR3, newCharVar3); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR3, ArtefactPackage.Literals.SKETCH__CHAR_VAR3, newCharVar3); } /** @@ -989,7 +989,7 @@ public void setCharVar3(char newCharVar3) { * @generated */ public char getCharVar4() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, true, true); } /** @@ -998,7 +998,7 @@ public char getCharVar4() { * @generated */ public void setCharVar4(char newCharVar4) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR4, ArtefactPackage.Literals.FILE__CHAR_VAR4, newCharVar4); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR4, ArtefactPackage.Literals.SKETCH__CHAR_VAR4, newCharVar4); } /** @@ -1007,7 +1007,7 @@ public void setCharVar4(char newCharVar4) { * @generated */ public char getCharVar5() { - return (Character)eDynamicGet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, true, true); + return (Character)eDynamicGet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, true, true); } /** @@ -1016,7 +1016,7 @@ public char getCharVar5() { * @generated */ public void setCharVar5(char newCharVar5) { - eDynamicSet(ArtefactPackage.FILE__CHAR_VAR5, ArtefactPackage.Literals.FILE__CHAR_VAR5, newCharVar5); + eDynamicSet(ArtefactPackage.SKETCH__CHAR_VAR5, ArtefactPackage.Literals.SKETCH__CHAR_VAR5, newCharVar5); } /** @@ -1025,7 +1025,7 @@ public void setCharVar5(char newCharVar5) { * @generated */ public long getLongVar1() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, true, true); } /** @@ -1034,7 +1034,7 @@ public long getLongVar1() { * @generated */ public void setLongVar1(long newLongVar1) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR1, ArtefactPackage.Literals.FILE__LONG_VAR1, newLongVar1); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR1, ArtefactPackage.Literals.SKETCH__LONG_VAR1, newLongVar1); } /** @@ -1043,7 +1043,7 @@ public void setLongVar1(long newLongVar1) { * @generated */ public long getLongVar2() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, true, true); } /** @@ -1052,7 +1052,7 @@ public long getLongVar2() { * @generated */ public void setLongVar2(long newLongVar2) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR2, ArtefactPackage.Literals.FILE__LONG_VAR2, newLongVar2); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR2, ArtefactPackage.Literals.SKETCH__LONG_VAR2, newLongVar2); } /** @@ -1061,7 +1061,7 @@ public void setLongVar2(long newLongVar2) { * @generated */ public long getLongVar3() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, true, true); } /** @@ -1070,7 +1070,7 @@ public long getLongVar3() { * @generated */ public void setLongVar3(long newLongVar3) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR3, ArtefactPackage.Literals.FILE__LONG_VAR3, newLongVar3); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR3, ArtefactPackage.Literals.SKETCH__LONG_VAR3, newLongVar3); } /** @@ -1079,7 +1079,7 @@ public void setLongVar3(long newLongVar3) { * @generated */ public long getLongVar4() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, true, true); } /** @@ -1088,7 +1088,7 @@ public long getLongVar4() { * @generated */ public void setLongVar4(long newLongVar4) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR4, ArtefactPackage.Literals.FILE__LONG_VAR4, newLongVar4); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR4, ArtefactPackage.Literals.SKETCH__LONG_VAR4, newLongVar4); } /** @@ -1097,7 +1097,7 @@ public void setLongVar4(long newLongVar4) { * @generated */ public long getLongVar5() { - return (Long)eDynamicGet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, true, true); + return (Long)eDynamicGet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, true, true); } /** @@ -1106,7 +1106,7 @@ public long getLongVar5() { * @generated */ public void setLongVar5(long newLongVar5) { - eDynamicSet(ArtefactPackage.FILE__LONG_VAR5, ArtefactPackage.Literals.FILE__LONG_VAR5, newLongVar5); + eDynamicSet(ArtefactPackage.SKETCH__LONG_VAR5, ArtefactPackage.Literals.SKETCH__LONG_VAR5, newLongVar5); } /** @@ -1115,7 +1115,7 @@ public void setLongVar5(long newLongVar5) { * @generated */ public float getFloatVar1() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, true, true); } /** @@ -1124,7 +1124,7 @@ public float getFloatVar1() { * @generated */ public void setFloatVar1(float newFloatVar1) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR1, ArtefactPackage.Literals.FILE__FLOAT_VAR1, newFloatVar1); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR1, ArtefactPackage.Literals.SKETCH__FLOAT_VAR1, newFloatVar1); } /** @@ -1133,7 +1133,7 @@ public void setFloatVar1(float newFloatVar1) { * @generated */ public float getFloatVar2() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, true, true); } /** @@ -1142,7 +1142,7 @@ public float getFloatVar2() { * @generated */ public void setFloatVar2(float newFloatVar2) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR2, ArtefactPackage.Literals.FILE__FLOAT_VAR2, newFloatVar2); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR2, ArtefactPackage.Literals.SKETCH__FLOAT_VAR2, newFloatVar2); } /** @@ -1151,7 +1151,7 @@ public void setFloatVar2(float newFloatVar2) { * @generated */ public float getFloatVar3() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, true, true); } /** @@ -1160,7 +1160,7 @@ public float getFloatVar3() { * @generated */ public void setFloatVar3(float newFloatVar3) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR3, ArtefactPackage.Literals.FILE__FLOAT_VAR3, newFloatVar3); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR3, ArtefactPackage.Literals.SKETCH__FLOAT_VAR3, newFloatVar3); } /** @@ -1169,7 +1169,7 @@ public void setFloatVar3(float newFloatVar3) { * @generated */ public float getFloatVar4() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, true, true); } /** @@ -1178,7 +1178,7 @@ public float getFloatVar4() { * @generated */ public void setFloatVar4(float newFloatVar4) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR4, ArtefactPackage.Literals.FILE__FLOAT_VAR4, newFloatVar4); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR4, ArtefactPackage.Literals.SKETCH__FLOAT_VAR4, newFloatVar4); } /** @@ -1187,7 +1187,7 @@ public void setFloatVar4(float newFloatVar4) { * @generated */ public float getFloatVar5() { - return (Float)eDynamicGet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, true, true); + return (Float)eDynamicGet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, true, true); } /** @@ -1196,7 +1196,7 @@ public float getFloatVar5() { * @generated */ public void setFloatVar5(float newFloatVar5) { - eDynamicSet(ArtefactPackage.FILE__FLOAT_VAR5, ArtefactPackage.Literals.FILE__FLOAT_VAR5, newFloatVar5); + eDynamicSet(ArtefactPackage.SKETCH__FLOAT_VAR5, ArtefactPackage.Literals.SKETCH__FLOAT_VAR5, newFloatVar5); } /** @@ -1205,7 +1205,7 @@ public void setFloatVar5(float newFloatVar5) { * @generated */ public double getDoubleVar1() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, true, true); } /** @@ -1214,7 +1214,7 @@ public double getDoubleVar1() { * @generated */ public void setDoubleVar1(double newDoubleVar1) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR1, ArtefactPackage.Literals.FILE__DOUBLE_VAR1, newDoubleVar1); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR1, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR1, newDoubleVar1); } /** @@ -1223,7 +1223,7 @@ public void setDoubleVar1(double newDoubleVar1) { * @generated */ public double getDoubleVar2() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, true, true); } /** @@ -1232,7 +1232,7 @@ public double getDoubleVar2() { * @generated */ public void setDoubleVar2(double newDoubleVar2) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR2, ArtefactPackage.Literals.FILE__DOUBLE_VAR2, newDoubleVar2); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR2, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR2, newDoubleVar2); } /** @@ -1241,7 +1241,7 @@ public void setDoubleVar2(double newDoubleVar2) { * @generated */ public double getDoubleVar3() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, true, true); } /** @@ -1250,7 +1250,7 @@ public double getDoubleVar3() { * @generated */ public void setDoubleVar3(double newDoubleVar3) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR3, ArtefactPackage.Literals.FILE__DOUBLE_VAR3, newDoubleVar3); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR3, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR3, newDoubleVar3); } /** @@ -1259,7 +1259,7 @@ public void setDoubleVar3(double newDoubleVar3) { * @generated */ public double getDoubleVar4() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, true, true); } /** @@ -1268,7 +1268,7 @@ public double getDoubleVar4() { * @generated */ public void setDoubleVar4(double newDoubleVar4) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR4, ArtefactPackage.Literals.FILE__DOUBLE_VAR4, newDoubleVar4); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR4, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR4, newDoubleVar4); } /** @@ -1277,7 +1277,7 @@ public void setDoubleVar4(double newDoubleVar4) { * @generated */ public double getDoubleVar5() { - return (Double)eDynamicGet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, true, true); + return (Double)eDynamicGet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, true, true); } /** @@ -1286,7 +1286,7 @@ public double getDoubleVar5() { * @generated */ public void setDoubleVar5(double newDoubleVar5) { - eDynamicSet(ArtefactPackage.FILE__DOUBLE_VAR5, ArtefactPackage.Literals.FILE__DOUBLE_VAR5, newDoubleVar5); + eDynamicSet(ArtefactPackage.SKETCH__DOUBLE_VAR5, ArtefactPackage.Literals.SKETCH__DOUBLE_VAR5, newDoubleVar5); } /** @@ -1295,7 +1295,7 @@ public void setDoubleVar5(double newDoubleVar5) { * @generated */ public boolean isBooleanVar1() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, true, true); } /** @@ -1304,7 +1304,7 @@ public boolean isBooleanVar1() { * @generated */ public void setBooleanVar1(boolean newBooleanVar1) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR1, ArtefactPackage.Literals.FILE__BOOLEAN_VAR1, newBooleanVar1); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR1, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1, newBooleanVar1); } /** @@ -1313,7 +1313,7 @@ public void setBooleanVar1(boolean newBooleanVar1) { * @generated */ public boolean isBooleanVar2() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, true, true); } /** @@ -1322,7 +1322,7 @@ public boolean isBooleanVar2() { * @generated */ public void setBooleanVar2(boolean newBooleanVar2) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR2, ArtefactPackage.Literals.FILE__BOOLEAN_VAR2, newBooleanVar2); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR2, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR2, newBooleanVar2); } /** @@ -1331,7 +1331,7 @@ public void setBooleanVar2(boolean newBooleanVar2) { * @generated */ public boolean isBooleanVar3() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, true, true); } /** @@ -1340,7 +1340,7 @@ public boolean isBooleanVar3() { * @generated */ public void setBooleanVar3(boolean newBooleanVar3) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR3, ArtefactPackage.Literals.FILE__BOOLEAN_VAR3, newBooleanVar3); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR3, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR3, newBooleanVar3); } /** @@ -1349,7 +1349,7 @@ public void setBooleanVar3(boolean newBooleanVar3) { * @generated */ public boolean isBooleanVar4() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, true, true); } /** @@ -1358,7 +1358,7 @@ public boolean isBooleanVar4() { * @generated */ public void setBooleanVar4(boolean newBooleanVar4) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR4, ArtefactPackage.Literals.FILE__BOOLEAN_VAR4, newBooleanVar4); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR4, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR4, newBooleanVar4); } /** @@ -1367,7 +1367,7 @@ public void setBooleanVar4(boolean newBooleanVar4) { * @generated */ public boolean isBooleanVar5() { - return (Boolean)eDynamicGet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, true, true); + return (Boolean)eDynamicGet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, true, true); } /** @@ -1376,7 +1376,7 @@ public boolean isBooleanVar5() { * @generated */ public void setBooleanVar5(boolean newBooleanVar5) { - eDynamicSet(ArtefactPackage.FILE__BOOLEAN_VAR5, ArtefactPackage.Literals.FILE__BOOLEAN_VAR5, newBooleanVar5); + eDynamicSet(ArtefactPackage.SKETCH__BOOLEAN_VAR5, ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR5, newBooleanVar5); } /** @@ -1385,7 +1385,7 @@ public void setBooleanVar5(boolean newBooleanVar5) { * @generated */ public String getStringVar1() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, true, true); } /** @@ -1394,7 +1394,7 @@ public String getStringVar1() { * @generated */ public void setStringVar1(String newStringVar1) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR1, ArtefactPackage.Literals.FILE__STRING_VAR1, newStringVar1); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR1, ArtefactPackage.Literals.SKETCH__STRING_VAR1, newStringVar1); } /** @@ -1403,7 +1403,7 @@ public void setStringVar1(String newStringVar1) { * @generated */ public String getStringVar2() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, true, true); } /** @@ -1412,7 +1412,7 @@ public String getStringVar2() { * @generated */ public void setStringVar2(String newStringVar2) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR2, ArtefactPackage.Literals.FILE__STRING_VAR2, newStringVar2); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR2, ArtefactPackage.Literals.SKETCH__STRING_VAR2, newStringVar2); } /** @@ -1421,7 +1421,7 @@ public void setStringVar2(String newStringVar2) { * @generated */ public String getStringVar3() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, true, true); } /** @@ -1430,7 +1430,7 @@ public String getStringVar3() { * @generated */ public void setStringVar3(String newStringVar3) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR3, ArtefactPackage.Literals.FILE__STRING_VAR3, newStringVar3); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR3, ArtefactPackage.Literals.SKETCH__STRING_VAR3, newStringVar3); } /** @@ -1439,7 +1439,7 @@ public void setStringVar3(String newStringVar3) { * @generated */ public String getStringVar4() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, true, true); } /** @@ -1448,7 +1448,7 @@ public String getStringVar4() { * @generated */ public void setStringVar4(String newStringVar4) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR4, ArtefactPackage.Literals.FILE__STRING_VAR4, newStringVar4); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR4, ArtefactPackage.Literals.SKETCH__STRING_VAR4, newStringVar4); } /** @@ -1457,7 +1457,7 @@ public void setStringVar4(String newStringVar4) { * @generated */ public String getStringVar5() { - return (String)eDynamicGet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, true, true); + return (String)eDynamicGet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, true, true); } /** @@ -1466,7 +1466,7 @@ public String getStringVar5() { * @generated */ public void setStringVar5(String newStringVar5) { - eDynamicSet(ArtefactPackage.FILE__STRING_VAR5, ArtefactPackage.Literals.FILE__STRING_VAR5, newStringVar5); + eDynamicSet(ArtefactPackage.SKETCH__STRING_VAR5, ArtefactPackage.Literals.SKETCH__STRING_VAR5, newStringVar5); } /** @@ -1477,7 +1477,7 @@ public void setStringVar5(String newStringVar5) { @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return ((InternalEList)getContents()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); @@ -1491,103 +1491,103 @@ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested(); - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: return getName(); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return getId(); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return getContents(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1(); - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2(); - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3(); - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4(); - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5(); - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1(); - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2(); - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3(); - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4(); - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5(); - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1(); - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2(); - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3(); - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4(); - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5(); - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1(); - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2(); - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3(); - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4(); - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5(); - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1(); - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2(); - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3(); - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4(); - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5(); - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1(); - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2(); - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3(); - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4(); - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5(); - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1(); - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2(); - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3(); - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4(); - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5(); - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1(); - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2(); - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3(); - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4(); - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5(); - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return getStringVar1(); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return getStringVar2(); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return getStringVar3(); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return getStringVar4(); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return getStringVar5(); } return super.eGet(featureID, resolve, coreType); @@ -1602,152 +1602,152 @@ public Object eGet(int featureID, boolean resolve, boolean coreType) { @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested((Boolean)newValue); return; - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: setName((String)newValue); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId((String)newValue); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); getContents().addAll((Collection)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4((Byte)newValue); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5((Byte)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4((Short)newValue); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5((Short)newValue); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4((Integer)newValue); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5((Integer)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4((Character)newValue); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5((Character)newValue); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4((Long)newValue); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5((Long)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4((Float)newValue); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5((Float)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4((Double)newValue); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5((Double)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4((Boolean)newValue); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5((Boolean)newValue); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4((String)newValue); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5((String)newValue); return; } @@ -1762,151 +1762,151 @@ public void eSet(int featureID, Object newValue) { @Override public void eUnset(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: setTested(TESTED_EDEFAULT); return; - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: setName(NAME_EDEFAULT); return; - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: setId(ID_EDEFAULT); return; - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: getContents().clear(); return; - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: setByteVar1(BYTE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: setByteVar2(BYTE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: setByteVar3(BYTE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: setByteVar4(BYTE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: setByteVar5(BYTE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: setShortVar1(SHORT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: setShortVar2(SHORT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: setShortVar3(SHORT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: setShortVar4(SHORT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: setShortVar5(SHORT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: setIntVar1(INT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: setIntVar2(INT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: setIntVar3(INT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: setIntVar4(INT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: setIntVar5(INT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: setCharVar1(CHAR_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: setCharVar2(CHAR_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: setCharVar3(CHAR_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: setCharVar4(CHAR_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: setCharVar5(CHAR_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: setLongVar1(LONG_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: setLongVar2(LONG_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: setLongVar3(LONG_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: setLongVar4(LONG_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: setLongVar5(LONG_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: setFloatVar1(FLOAT_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: setFloatVar2(FLOAT_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: setFloatVar3(FLOAT_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: setFloatVar4(FLOAT_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: setFloatVar5(FLOAT_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: setDoubleVar1(DOUBLE_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: setDoubleVar2(DOUBLE_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: setDoubleVar3(DOUBLE_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: setDoubleVar4(DOUBLE_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: setDoubleVar5(DOUBLE_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: setBooleanVar1(BOOLEAN_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: setBooleanVar2(BOOLEAN_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: setBooleanVar3(BOOLEAN_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: setBooleanVar4(BOOLEAN_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: setBooleanVar5(BOOLEAN_VAR5_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: setStringVar1(STRING_VAR1_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: setStringVar2(STRING_VAR2_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: setStringVar3(STRING_VAR3_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: setStringVar4(STRING_VAR4_EDEFAULT); return; - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: setStringVar5(STRING_VAR5_EDEFAULT); return; } @@ -1921,103 +1921,103 @@ public void eUnset(int featureID) { @Override public boolean eIsSet(int featureID) { switch (featureID) { - case ArtefactPackage.FILE__TESTED: + case ArtefactPackage.SKETCH__TESTED: return isTested() != TESTED_EDEFAULT; - case ArtefactPackage.FILE__NAME: + case ArtefactPackage.SKETCH__NAME: return NAME_EDEFAULT == null ? getName() != null : !NAME_EDEFAULT.equals(getName()); - case ArtefactPackage.FILE__ID: + case ArtefactPackage.SKETCH__ID: return ID_EDEFAULT == null ? getId() != null : !ID_EDEFAULT.equals(getId()); - case ArtefactPackage.FILE__CONTENTS: + case ArtefactPackage.SKETCH__CONTENTS: return !getContents().isEmpty(); - case ArtefactPackage.FILE__BYTE_VAR1: + case ArtefactPackage.SKETCH__BYTE_VAR1: return getByteVar1() != BYTE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR2: + case ArtefactPackage.SKETCH__BYTE_VAR2: return getByteVar2() != BYTE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR3: + case ArtefactPackage.SKETCH__BYTE_VAR3: return getByteVar3() != BYTE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR4: + case ArtefactPackage.SKETCH__BYTE_VAR4: return getByteVar4() != BYTE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BYTE_VAR5: + case ArtefactPackage.SKETCH__BYTE_VAR5: return getByteVar5() != BYTE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR1: + case ArtefactPackage.SKETCH__SHORT_VAR1: return getShortVar1() != SHORT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR2: + case ArtefactPackage.SKETCH__SHORT_VAR2: return getShortVar2() != SHORT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR3: + case ArtefactPackage.SKETCH__SHORT_VAR3: return getShortVar3() != SHORT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR4: + case ArtefactPackage.SKETCH__SHORT_VAR4: return getShortVar4() != SHORT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__SHORT_VAR5: + case ArtefactPackage.SKETCH__SHORT_VAR5: return getShortVar5() != SHORT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR1: + case ArtefactPackage.SKETCH__INT_VAR1: return getIntVar1() != INT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR2: + case ArtefactPackage.SKETCH__INT_VAR2: return getIntVar2() != INT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR3: + case ArtefactPackage.SKETCH__INT_VAR3: return getIntVar3() != INT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR4: + case ArtefactPackage.SKETCH__INT_VAR4: return getIntVar4() != INT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__INT_VAR5: + case ArtefactPackage.SKETCH__INT_VAR5: return getIntVar5() != INT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR1: + case ArtefactPackage.SKETCH__CHAR_VAR1: return getCharVar1() != CHAR_VAR1_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR2: + case ArtefactPackage.SKETCH__CHAR_VAR2: return getCharVar2() != CHAR_VAR2_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR3: + case ArtefactPackage.SKETCH__CHAR_VAR3: return getCharVar3() != CHAR_VAR3_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR4: + case ArtefactPackage.SKETCH__CHAR_VAR4: return getCharVar4() != CHAR_VAR4_EDEFAULT; - case ArtefactPackage.FILE__CHAR_VAR5: + case ArtefactPackage.SKETCH__CHAR_VAR5: return getCharVar5() != CHAR_VAR5_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR1: + case ArtefactPackage.SKETCH__LONG_VAR1: return getLongVar1() != LONG_VAR1_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR2: + case ArtefactPackage.SKETCH__LONG_VAR2: return getLongVar2() != LONG_VAR2_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR3: + case ArtefactPackage.SKETCH__LONG_VAR3: return getLongVar3() != LONG_VAR3_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR4: + case ArtefactPackage.SKETCH__LONG_VAR4: return getLongVar4() != LONG_VAR4_EDEFAULT; - case ArtefactPackage.FILE__LONG_VAR5: + case ArtefactPackage.SKETCH__LONG_VAR5: return getLongVar5() != LONG_VAR5_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR1: + case ArtefactPackage.SKETCH__FLOAT_VAR1: return getFloatVar1() != FLOAT_VAR1_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR2: + case ArtefactPackage.SKETCH__FLOAT_VAR2: return getFloatVar2() != FLOAT_VAR2_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR3: + case ArtefactPackage.SKETCH__FLOAT_VAR3: return getFloatVar3() != FLOAT_VAR3_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR4: + case ArtefactPackage.SKETCH__FLOAT_VAR4: return getFloatVar4() != FLOAT_VAR4_EDEFAULT; - case ArtefactPackage.FILE__FLOAT_VAR5: + case ArtefactPackage.SKETCH__FLOAT_VAR5: return getFloatVar5() != FLOAT_VAR5_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR1: + case ArtefactPackage.SKETCH__DOUBLE_VAR1: return getDoubleVar1() != DOUBLE_VAR1_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR2: + case ArtefactPackage.SKETCH__DOUBLE_VAR2: return getDoubleVar2() != DOUBLE_VAR2_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR3: + case ArtefactPackage.SKETCH__DOUBLE_VAR3: return getDoubleVar3() != DOUBLE_VAR3_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR4: + case ArtefactPackage.SKETCH__DOUBLE_VAR4: return getDoubleVar4() != DOUBLE_VAR4_EDEFAULT; - case ArtefactPackage.FILE__DOUBLE_VAR5: + case ArtefactPackage.SKETCH__DOUBLE_VAR5: return getDoubleVar5() != DOUBLE_VAR5_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR1: + case ArtefactPackage.SKETCH__BOOLEAN_VAR1: return isBooleanVar1() != BOOLEAN_VAR1_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR2: + case ArtefactPackage.SKETCH__BOOLEAN_VAR2: return isBooleanVar2() != BOOLEAN_VAR2_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR3: + case ArtefactPackage.SKETCH__BOOLEAN_VAR3: return isBooleanVar3() != BOOLEAN_VAR3_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR4: + case ArtefactPackage.SKETCH__BOOLEAN_VAR4: return isBooleanVar4() != BOOLEAN_VAR4_EDEFAULT; - case ArtefactPackage.FILE__BOOLEAN_VAR5: + case ArtefactPackage.SKETCH__BOOLEAN_VAR5: return isBooleanVar5() != BOOLEAN_VAR5_EDEFAULT; - case ArtefactPackage.FILE__STRING_VAR1: + case ArtefactPackage.SKETCH__STRING_VAR1: return STRING_VAR1_EDEFAULT == null ? getStringVar1() != null : !STRING_VAR1_EDEFAULT.equals(getStringVar1()); - case ArtefactPackage.FILE__STRING_VAR2: + case ArtefactPackage.SKETCH__STRING_VAR2: return STRING_VAR2_EDEFAULT == null ? getStringVar2() != null : !STRING_VAR2_EDEFAULT.equals(getStringVar2()); - case ArtefactPackage.FILE__STRING_VAR3: + case ArtefactPackage.SKETCH__STRING_VAR3: return STRING_VAR3_EDEFAULT == null ? getStringVar3() != null : !STRING_VAR3_EDEFAULT.equals(getStringVar3()); - case ArtefactPackage.FILE__STRING_VAR4: + case ArtefactPackage.SKETCH__STRING_VAR4: return STRING_VAR4_EDEFAULT == null ? getStringVar4() != null : !STRING_VAR4_EDEFAULT.equals(getStringVar4()); - case ArtefactPackage.FILE__STRING_VAR5: + case ArtefactPackage.SKETCH__STRING_VAR5: return STRING_VAR5_EDEFAULT == null ? getStringVar5() != null : !STRING_VAR5_EDEFAULT.equals(getStringVar5()); } return super.eIsSet(featureID); @@ -2032,13 +2032,13 @@ public boolean eIsSet(int featureID) { public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == INamed.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__NAME: return BasePackage.INAMED__NAME; + case ArtefactPackage.SKETCH__NAME: return BasePackage.INAMED__NAME; default: return -1; } } if (baseClass == IID.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__ID: return BasePackage.IID__ID; + case ArtefactPackage.SKETCH__ID: return BasePackage.IID__ID; default: return -1; } } @@ -2049,7 +2049,7 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (derivedFeatureID) { - case ArtefactPackage.FILE__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; + case ArtefactPackage.SKETCH__CONTENTS: return BasePackage.ICONTAINER__CONTENTS; default: return -1; } } @@ -2065,13 +2065,13 @@ public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == INamed.class) { switch (baseFeatureID) { - case BasePackage.INAMED__NAME: return ArtefactPackage.FILE__NAME; + case BasePackage.INAMED__NAME: return ArtefactPackage.SKETCH__NAME; default: return -1; } } if (baseClass == IID.class) { switch (baseFeatureID) { - case BasePackage.IID__ID: return ArtefactPackage.FILE__ID; + case BasePackage.IID__ID: return ArtefactPackage.SKETCH__ID; default: return -1; } } @@ -2082,11 +2082,11 @@ public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { } if (baseClass == IContainer.class) { switch (baseFeatureID) { - case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.FILE__CONTENTS; + case BasePackage.ICONTAINER__CONTENTS: return ArtefactPackage.SKETCH__CONTENTS; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } -} //FileImpl +} //SketchImpl diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactAdapterFactory.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactAdapterFactory.java index f2d5e15f7..bc36690b5 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactAdapterFactory.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactAdapterFactory.java @@ -79,8 +79,8 @@ public Adapter caseDiagram(Diagram object) { return createDiagramAdapter(); } @Override - public Adapter caseFile(File object) { - return createFileAdapter(); + public Adapter caseSketch(Sketch object) { + return createSketchAdapter(); } @Override public Adapter caseITestable(ITestable object) { @@ -141,16 +141,16 @@ public Adapter createDiagramAdapter() { } /** - * Creates a new adapter for an object of class '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.File File}'. + * Creates a new adapter for an object of class '{@link com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch Sketch}'. * * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * * @return the new adapter. - * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.File + * @see com.specmate.migration.test.severalattributesadded.testmodel.artefact.Sketch * @generated */ - public Adapter createFileAdapter() { + public Adapter createSketchAdapter() { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactSwitch.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactSwitch.java index 3afc0cc70..9c69e1a2f 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactSwitch.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/severalattributesadded/testmodel/artefact/util/ArtefactSwitch.java @@ -85,15 +85,15 @@ protected T doSwitch(int classifierID, EObject theEObject) { if (result == null) result = defaultCase(theEObject); return result; } - case ArtefactPackage.FILE: { - File file = (File)theEObject; - T result = caseFile(file); - if (result == null) result = caseIModifiable(file); - if (result == null) result = caseIContainer(file); - if (result == null) result = caseITestable(file); - if (result == null) result = caseIContentElement(file); - if (result == null) result = caseINamed(file); - if (result == null) result = caseIID(file); + case ArtefactPackage.SKETCH: { + Sketch sketch = (Sketch)theEObject; + T result = caseSketch(sketch); + if (result == null) result = caseIModifiable(sketch); + if (result == null) result = caseIContainer(sketch); + if (result == null) result = caseITestable(sketch); + if (result == null) result = caseIContentElement(sketch); + if (result == null) result = caseINamed(sketch); + if (result == null) result = caseIID(sketch); if (result == null) result = defaultCase(theEObject); return result; } @@ -117,17 +117,17 @@ public T caseDiagram(Diagram object) { } /** - * Returns the result of interpreting the object as an instance of 'File'. + * Returns the result of interpreting the object as an instance of 'Sketch'. * * This implementation returns null; * returning a non-null result will terminate the switch. * * @param object the target of the switch. - * @return the result of interpreting the object as an instance of 'File'. + * @return the result of interpreting the object as an instance of 'Sketch'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ - public T caseFile(File object) { + public T caseSketch(Sketch object) { return null; } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestMigratorImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestMigratorImpl.java index 7630e72a5..844dcd235 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestMigratorImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestMigratorImpl.java @@ -11,27 +11,30 @@ import org.osgi.service.cm.ConfigurationAdmin; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; -import org.osgi.service.log.LogService; import org.osgi.util.tracker.ServiceTracker; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IDataType; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; -import com.specmate.migration.h2.EDataType; -import com.specmate.migration.h2.ObjectToSQLMapper; import com.specmate.migration.test.AddAttributeTest; import com.specmate.migration.test.AddObjectTest; import com.specmate.migration.test.AddSeveralAttributesTest; import com.specmate.migration.test.ChangedTypesTest; +import com.specmate.migration.test.OnlyMetaChangeTest; import com.specmate.migration.test.RenamedAttributeTest; +import specmate.dbprovider.h2.H2DataType; + @Component(property = "sourceVersion=0") public class TestMigratorImpl implements IMigrator { public static final String PID = "com.specmate.migration.test.support.TestMigratorImpl"; public static final String KEY_MIGRATOR_TEST = "testcase"; - public static final Date DEFAULT_DATE = new Date(2018, 5, 10); + public static final Date DEFAULT_DATE = new Date(118, 5, 10); private String packageName = "testmodel/artefact"; - private LogService logService; + private IDBProvider dbProvider; @Override public String getSourceVersion() { @@ -60,108 +63,213 @@ public void migrate(Connection connection) throws SpecmateException { migrateAttributeRenamed(connection); } else if (testcase.equals(ChangedTypesTest.class.getName())) { migrateTypesChanged(connection); + } else if (testcase.equals(OnlyMetaChangeTest.class.getName())) { + migrateOnlyMetaDataChange(); } - + } catch (InterruptedException | IOException e) { throw new SpecmateException(e.getMessage()); } } - + private void migrateAttributeAdded(Connection connection) throws SpecmateException { - AttributeToSQLMapper aAdded = new AttributeToSQLMapper(connection, logService, packageName, getSourceVersion(), + IAttributeToSQLMapper aAdded = dbProvider.getAttributeToSQLMapper(packageName, getSourceVersion(), getTargetVersion()); - aAdded.migrateNewStringAttribute("folder", "name", ""); - aAdded.migrateNewStringAttribute("diagram", "name", null); - aAdded.migrateNewStringAttribute("file", "name", null); - aAdded.migrateNewDateAttribute("diagram", "created", DEFAULT_DATE); + + String folder = com.specmate.migration.test.attributeadded.testmodel.base.BasePackage.Literals.FOLDER.getName(); + + String diagram = com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM + .getName(); + String sketch = com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage.Literals.SKETCH + .getName(); + String name = com.specmate.migration.test.attributeadded.testmodel.base.BasePackage.Literals.INAMED__NAME + .getName(); + String created = com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__CREATED + .getName(); + + aAdded.migrateNewStringAttribute(folder, name, ""); + aAdded.migrateNewStringAttribute(diagram, name, null); + aAdded.migrateNewStringAttribute(sketch, name, null); + aAdded.migrateNewDateAttribute(diagram, created, DEFAULT_DATE); } - + private void migrateSeveralAttributesAdded(Connection connection) throws SpecmateException { - AttributeToSQLMapper aAdded = new AttributeToSQLMapper(connection, logService, packageName, getSourceVersion(), + IAttributeToSQLMapper aAdded = dbProvider.getAttributeToSQLMapper(packageName, getSourceVersion(), getTargetVersion()); - aAdded.migrateNewStringAttribute("folder", "name", ""); - aAdded.migrateNewStringAttribute("diagram", "name", null); - aAdded.migrateNewStringAttribute("file", "name", null); - aAdded.migrateNewBooleanAttribute("diagram", "linked", false); - aAdded.migrateNewDoubleAttribute("diagram", "length", null); - aAdded.migrateNewIntegerAttribute("diagram", "amount", -1); - aAdded.migrateNewIntegerAttribute("diagram", "intamount", -1); - aAdded.migrateNewDoubleAttribute("diagram", "doublelength", 0.0); - aAdded.migrateNewBooleanAttribute("diagram", "booleanlinked", false); + + String folder = com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage.Literals.FOLDER + .getName(); + String diagram = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM + .getName(); + String sketch = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.SKETCH + .getName(); + String name = com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage.Literals.INAMED__NAME + .getName(); + String linked = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__LINKED + .getName(); + String length = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__LENGTH + .getName(); + String amount = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__AMOUNT + .getName(); + String intamount = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__INTAMOUNT + .getName(); + String doublelength = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__DOUBLELENGTH + .getName(); + String booleanlinked = com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM__BOOLEANLINKED + .getName(); + + aAdded.migrateNewStringAttribute(folder, name, ""); + aAdded.migrateNewStringAttribute(diagram, name, null); + aAdded.migrateNewStringAttribute(sketch, name, null); + aAdded.migrateNewBooleanAttribute(diagram, linked, false); + aAdded.migrateNewDoubleAttribute(diagram, length, null); + aAdded.migrateNewIntegerAttribute(diagram, amount, -1); + aAdded.migrateNewIntegerAttribute(diagram, intamount, -1); + aAdded.migrateNewDoubleAttribute(diagram, doublelength, 0.0); + aAdded.migrateNewBooleanAttribute(diagram, booleanlinked, false); } - + private void migrateObjectAdded(Connection connection) throws SpecmateException { - String objectName = "Document"; - ObjectToSQLMapper oAdded = new ObjectToSQLMapper(connection, logService, packageName, getSourceVersion(), + String document = com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage.Literals.DOCUMENT + .getName(); + String id = com.specmate.migration.test.objectadded.testmodel.base.BasePackage.Literals.IID__ID.getName(); + String tested = com.specmate.migration.test.objectadded.testmodel.base.BasePackage.Literals.ITESTABLE__TESTED + .getName(); + String length = com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage.Literals.DOCUMENT__LENGTH + .getName(); + String owner = com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage.Literals.DOCUMENT__OWNER + .getName(); + String contents = com.specmate.migration.test.objectadded.testmodel.base.BasePackage.Literals.ICONTAINER__CONTENTS + .getName(); + + IObjectToSQLMapper oAdded = dbProvider.getObjectToSQLMapper(packageName, getSourceVersion(), getTargetVersion()); - oAdded.newObject(objectName); - - AttributeToSQLMapper aAdded = new AttributeToSQLMapper(connection, logService, packageName, getSourceVersion(), + oAdded.newObject(document); + + IAttributeToSQLMapper aAdded = dbProvider.getAttributeToSQLMapper(packageName, getSourceVersion(), getTargetVersion()); - aAdded.migrateNewStringAttribute(objectName, "id", ""); - aAdded.migrateNewBooleanAttribute(objectName, "tested", false); - aAdded.migrateNewLongAttribute(objectName, "length", null); - aAdded.migrateNewStringAttribute(objectName, "owner", null); - aAdded.migrateNewReference(objectName, "contents"); + aAdded.migrateNewStringAttribute(document, id, ""); + aAdded.migrateNewBooleanAttribute(document, tested, false); + aAdded.migrateNewLongAttribute(document, length, null); + aAdded.migrateNewStringAttribute(document, owner, null); + aAdded.migrateNewReference(document, contents); } - + private void migrateAttributeRenamed(Connection connection) throws SpecmateException { - AttributeToSQLMapper aRenamed = new AttributeToSQLMapper(connection, logService, packageName, - getSourceVersion(), getTargetVersion()); - aRenamed.migrateRenameAttribute("Diagram", "tested", "istested"); - aRenamed.migrateRenameAttribute("File", "tested", "istested"); + IAttributeToSQLMapper aRenamed = dbProvider.getAttributeToSQLMapper(packageName, getSourceVersion(), + getTargetVersion()); + + String diagram = com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage.Literals.DIAGRAM + .getName(); + String sketch = com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage.Literals.SKETCH + .getName(); + String tested = com.specmate.migration.test.baseline.testmodel.base.BasePackage.Literals.ITESTABLE__TESTED + .getName(); + String istested = com.specmate.migration.test.attributerenamed.testmodel.base.BasePackage.Literals.ITESTABLE__ISTESTED + .getName(); + + aRenamed.migrateRenameAttribute(diagram, tested, istested); + aRenamed.migrateRenameAttribute(sketch, tested, istested); } - + private void migrateTypesChanged(Connection connection) throws SpecmateException { - AttributeToSQLMapper aTypeChanged = new AttributeToSQLMapper(connection, logService, packageName, - getSourceVersion(), getTargetVersion()); - - aTypeChanged.migrateChangeType("File", "shortVar1", EDataType.INT); - aTypeChanged.migrateChangeType("File", "shortVar2", EDataType.LONG); - aTypeChanged.migrateChangeType("File", "shortVar3", EDataType.FLOAT); - aTypeChanged.migrateChangeType("File", "shortVar4", EDataType.DOUBLE); - - aTypeChanged.migrateChangeType("File", "charVar1", EDataType.INT); - aTypeChanged.migrateChangeType("File", "charVar2", EDataType.LONG); - aTypeChanged.migrateChangeType("File", "charVar3", EDataType.FLOAT); - aTypeChanged.migrateChangeType("File", "charVar4", EDataType.DOUBLE); - EDataType charVar5 = EDataType.STRING; + IAttributeToSQLMapper aTypeChanged = dbProvider.getAttributeToSQLMapper(packageName, getSourceVersion(), + getTargetVersion()); + + String sketch = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH + .getName(); + String shortvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__SHORT_VAR1 + .getName(); + String shortvar2 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__SHORT_VAR2 + .getName(); + String shortvar3 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__SHORT_VAR3 + .getName(); + String shortvar4 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__SHORT_VAR4 + .getName(); + String charvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__CHAR_VAR1 + .getName(); + String charvar2 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__CHAR_VAR2 + .getName(); + String charvar3 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__CHAR_VAR3 + .getName(); + String charvar4 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__CHAR_VAR4 + .getName(); + String charvar5 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__CHAR_VAR5 + .getName(); + String intvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__INT_VAR1 + .getName(); + String intvar2 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__INT_VAR2 + .getName(); + String intvar3 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__INT_VAR3 + .getName(); + String longvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__LONG_VAR1 + .getName(); + String longvar2 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__LONG_VAR2 + .getName(); + String floatvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__FLOAT_VAR1 + .getName(); + String booleanvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__BOOLEAN_VAR1 + .getName(); + String stringvar1 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__STRING_VAR1 + .getName(); + String stringvar2 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__STRING_VAR2 + .getName(); + String stringvar3 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__STRING_VAR3 + .getName(); + String stringvar4 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__STRING_VAR4 + .getName(); + String stringvar5 = com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.Literals.SKETCH__STRING_VAR5 + .getName(); + + aTypeChanged.migrateChangeType(sketch, shortvar1, H2DataType.INT); + aTypeChanged.migrateChangeType(sketch, shortvar2, H2DataType.LONG); + aTypeChanged.migrateChangeType(sketch, shortvar3, H2DataType.FLOAT); + aTypeChanged.migrateChangeType(sketch, shortvar4, H2DataType.DOUBLE); + + aTypeChanged.migrateChangeType(sketch, charvar1, H2DataType.INT); + aTypeChanged.migrateChangeType(sketch, charvar2, H2DataType.LONG); + aTypeChanged.migrateChangeType(sketch, charvar3, H2DataType.FLOAT); + aTypeChanged.migrateChangeType(sketch, charvar4, H2DataType.DOUBLE); + IDataType charVar5 = H2DataType.STRING; charVar5.setSize(1); - aTypeChanged.migrateChangeType("File", "charVar5", charVar5); - - aTypeChanged.migrateChangeType("File", "intVar1", EDataType.LONG); - aTypeChanged.migrateChangeType("File", "intVar2", EDataType.FLOAT); - aTypeChanged.migrateChangeType("File", "intVar3", EDataType.DOUBLE); - - aTypeChanged.migrateChangeType("File", "longVar1", EDataType.FLOAT); - aTypeChanged.migrateChangeType("File", "longVar2", EDataType.DOUBLE); - - aTypeChanged.migrateChangeType("File", "floatVar1", EDataType.DOUBLE); - - EDataType booleanVar1 = EDataType.STRING; + aTypeChanged.migrateChangeType(sketch, charvar5, charVar5); + + aTypeChanged.migrateChangeType(sketch, intvar1, H2DataType.LONG); + aTypeChanged.migrateChangeType(sketch, intvar2, H2DataType.FLOAT); + aTypeChanged.migrateChangeType(sketch, intvar3, H2DataType.DOUBLE); + + aTypeChanged.migrateChangeType(sketch, longvar1, H2DataType.FLOAT); + aTypeChanged.migrateChangeType(sketch, longvar2, H2DataType.DOUBLE); + + aTypeChanged.migrateChangeType(sketch, floatvar1, H2DataType.DOUBLE); + + IDataType booleanVar1 = H2DataType.STRING; booleanVar1.setSize(16); - aTypeChanged.migrateChangeType("File", "booleanVar1", booleanVar1); - - aTypeChanged.migrateChangeType("File", "stringVar1", EDataType.BOOLEAN); - aTypeChanged.migrateChangeType("File", "stringVar2", EDataType.BOOLEAN); - aTypeChanged.migrateChangeType("File", "stringVar3", EDataType.BOOLEAN); - aTypeChanged.migrateChangeType("File", "stringVar4", EDataType.BOOLEAN); - aTypeChanged.migrateChangeType("File", "stringVar5", EDataType.BOOLEAN); + aTypeChanged.migrateChangeType(sketch, booleanvar1, booleanVar1); + + aTypeChanged.migrateChangeType(sketch, stringvar1, H2DataType.BOOLEAN); + aTypeChanged.migrateChangeType(sketch, stringvar2, H2DataType.BOOLEAN); + aTypeChanged.migrateChangeType(sketch, stringvar3, H2DataType.BOOLEAN); + aTypeChanged.migrateChangeType(sketch, stringvar4, H2DataType.BOOLEAN); + aTypeChanged.migrateChangeType(sketch, stringvar5, H2DataType.BOOLEAN); + } + + private void migrateOnlyMetaDataChange() { + // Nothing to do } - + private ConfigurationAdmin getConfigurationAdmin(BundleContext context) throws InterruptedException { - ServiceTracker configurationAdminTracker = - new ServiceTracker<>(context, ConfigurationAdmin.class.getName(), null); - + ServiceTracker configurationAdminTracker = new ServiceTracker<>(context, + ConfigurationAdmin.class.getName(), null); + configurationAdminTracker.open(); ConfigurationAdmin configurationAdmin = configurationAdminTracker.waitForService(10000); Assert.assertNotNull(configurationAdmin); return configurationAdmin; } - + @Reference - public void setLogService(LogService logService) { - this.logService = logService; + public void setDBProvider(IDBProvider dbProvider) { + this.dbProvider = dbProvider; } - } diff --git a/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestModelProviderImpl.java b/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestModelProviderImpl.java index e95ceecb1..8d16292ec 100644 --- a/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestModelProviderImpl.java +++ b/bundles/specmate-migration-test/src/com/specmate/migration/test/support/TestModelProviderImpl.java @@ -8,60 +8,74 @@ import com.specmate.persistency.IPackageProvider; -@Component(service = IPackageProvider.class, property= {"service.ranking:Integer=1"}) +@Component(service = IPackageProvider.class, property = { "service.ranking:Integer=1" }) public class TestModelProviderImpl implements IPackageProvider { private String modelName; @Override public Collection getPackages() { - if(modelName == null || modelName.equals(com.specmate.migration.test.baseline.testmodel.base.BasePackage.class.getName())) { + if (modelName == null + || modelName.equals(com.specmate.migration.test.baseline.testmodel.base.BasePackage.class.getName())) { return getBasemodelPackages(); - } else if (modelName.equals(com.specmate.migration.test.attributeadded.testmodel.base.BasePackage.class.getName())) { + } else if (modelName + .equals(com.specmate.migration.test.attributeadded.testmodel.base.BasePackage.class.getName())) { return getAttributeAddedPackages(); - } else if (modelName.equals(com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage.class.getName())) { + } else if (modelName.equals( + com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage.class.getName())) { return getSeveralAttributesAddedPackages(); - } else if (modelName.equals(com.specmate.migration.test.objectadded.testmodel.base.BasePackage.class.getName())) { + } else if (modelName + .equals(com.specmate.migration.test.objectadded.testmodel.base.BasePackage.class.getName())) { return getObjectAddedPackages(); - } else if (modelName.equals(com.specmate.migration.test.attributerenamed.testmodel.base.BasePackage.class.getName())) { + } else if (modelName + .equals(com.specmate.migration.test.attributerenamed.testmodel.base.BasePackage.class.getName())) { return getAttributeRenamedPackages(); - } else if (modelName.equals(com.specmate.migration.test.changedtypes.testmodel.base.BasePackage.class.getName())) { + } else if (modelName + .equals(com.specmate.migration.test.changedtypes.testmodel.base.BasePackage.class.getName())) { return getChangedTypesPackages(); + } else if (modelName + .equals(com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage.class.getName())) { + return getOnlyMetaChangePackages(); } - + return null; } - + public void setModelName(String modelName) { this.modelName = modelName; } - + private Collection getBasemodelPackages() { - return Arrays.asList(com.specmate.migration.test.baseline.testmodel.base.BasePackage.eINSTANCE, + return Arrays.asList(com.specmate.migration.test.baseline.testmodel.base.BasePackage.eINSTANCE, com.specmate.migration.test.baseline.testmodel.artefact.ArtefactPackage.eINSTANCE); } - + private Collection getAttributeAddedPackages() { return Arrays.asList(com.specmate.migration.test.attributeadded.testmodel.base.BasePackage.eINSTANCE, com.specmate.migration.test.attributeadded.testmodel.artefact.ArtefactPackage.eINSTANCE); } - + private Collection getSeveralAttributesAddedPackages() { - return Arrays.asList(com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage.eINSTANCE, + return Arrays.asList(com.specmate.migration.test.severalattributesadded.testmodel.base.BasePackage.eINSTANCE, com.specmate.migration.test.severalattributesadded.testmodel.artefact.ArtefactPackage.eINSTANCE); } - + private Collection getObjectAddedPackages() { - return Arrays.asList(com.specmate.migration.test.objectadded.testmodel.base.BasePackage.eINSTANCE, + return Arrays.asList(com.specmate.migration.test.objectadded.testmodel.base.BasePackage.eINSTANCE, com.specmate.migration.test.objectadded.testmodel.artefact.ArtefactPackage.eINSTANCE); } - + private Collection getAttributeRenamedPackages() { return Arrays.asList(com.specmate.migration.test.attributerenamed.testmodel.base.BasePackage.eINSTANCE, com.specmate.migration.test.attributerenamed.testmodel.artefact.ArtefactPackage.eINSTANCE); } - + private Collection getChangedTypesPackages() { return Arrays.asList(com.specmate.migration.test.changedtypes.testmodel.base.BasePackage.eINSTANCE, com.specmate.migration.test.changedtypes.testmodel.artefact.ArtefactPackage.eINSTANCE); } + + private Collection getOnlyMetaChangePackages() { + return Arrays.asList(com.specmate.migration.test.onlymetachange.testmodel.base.BasePackage.eINSTANCE, + com.specmate.migration.test.onlymetachange.testmodel.artefact.ArtefactPackage.eINSTANCE); + } } diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/AttributeToSQLMapper.java b/bundles/specmate-migration/src/com/specmate/migration/h2/AttributeToSQLMapper.java deleted file mode 100644 index 6b55ef098..000000000 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/AttributeToSQLMapper.java +++ /dev/null @@ -1,195 +0,0 @@ -package com.specmate.migration.h2; - -import java.sql.Connection; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.text.DateFormat; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import org.osgi.service.log.LogService; - -import com.specmate.common.SpecmateException; - -public class AttributeToSQLMapper extends SQLMapper { - - public AttributeToSQLMapper(Connection connection, LogService logService, String packageName, - String sourceVersion, String targetVersion) { - super(connection, logService, packageName, sourceVersion, targetVersion); - } - - public void migrateNewStringAttribute(String objectName, String attributeName, String defaultValue) throws SpecmateException { - String alterString = "ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " VARCHAR(32672)"; - - if (hasDefault(defaultValue)) { - alterString += " DEFAULT '" + defaultValue + "'"; - } - - executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); - // TODO Add info messages like these for all migrations, as soon as we know how to handle errors in migration steps - // and do a roll back - // logService.log(LogService.LOG_INFO, "Migration: Added new string attribute " + attributeName + " to object " + objectName); - } - - public void migrateNewBooleanAttribute(String objectName, String attributeName, Boolean defaultValue) throws SpecmateException { - String alterString = "ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " BOOLEAN"; - - if (hasDefault(defaultValue)) { - alterString += " DEFAULT " + defaultValue; - } - - executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); - } - - public void migrateNewIntegerAttribute(String objectName, String attributeName, Integer defaultValue) throws SpecmateException { - String alterString = "ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " INTEGER"; - - if (hasDefault(defaultValue)) { - alterString += " DEFAULT " + defaultValue.intValue(); - } - - executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); - } - - public void migrateNewDoubleAttribute(String objectName, String attributeName, Double defaultValue) throws SpecmateException { - String alterString = "ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " DOUBLE"; - - if (hasDefault(defaultValue)) { - alterString += " DEFAULT " + defaultValue; - } - - executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); - } - - public void migrateNewLongAttribute(String objectName, String attributeName, Long defaultValue) throws SpecmateException { - String alterString = "ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " BIGINT"; - - if (hasDefault(defaultValue)) { - alterString += " DEFAULT " + defaultValue; - } - - executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); - } - - public void migrateNewDateAttribute(String objectName, String attributeName, Date defaultValue) throws SpecmateException { - String alterString = "ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " DATE"; - - if (hasDefault(defaultValue)) { - DateFormat df = new SimpleDateFormat("yyyy-MM-dd"); - alterString += " DEFAULT '" + df.format(defaultValue) + "'"; - } - - executeChange(alterString, objectName, attributeName, hasDefault(defaultValue)); - } - - public void migrateNewReference(String objectName, String attributeName) throws SpecmateException { - String failmsg = "Migration: Could not add column " + attributeName + " to table " + objectName + "."; - String tableNameList = objectName + "_" + attributeName + "_LIST"; - List queries = new ArrayList<>(); - queries.add("ALTER TABLE " + objectName + - " ADD COLUMN " + attributeName + - " INTEGER"); - - queries.add("CREATE TABLE " + tableNameList + " (" + - "CDO_SOURCE BIGINT NOT NULL, " + - "CDO_VERSION INTEGER NOT NULL, " + - "CDO_IDX INTEGER NOT NULL, " + - "CDO_VALUE BIGINT)"); - - queries.add("CREATE UNIQUE INDEX " + - SQLUtil.createRandomIdentifier("PRIMARY_KEY_" + tableNameList) + - " ON " + tableNameList + " (CDO_SOURCE ASC, CDO_VERSION ASC, CDO_IDX ASC)"); - - queries.add("ALTER TABLE " + tableNameList + " ADD CONSTRAINT " + - SQLUtil.createRandomIdentifier("CONSTRAINT_" + tableNameList) + - " PRIMARY KEY (CDO_SOURCE, CDO_VERSION, CDO_IDX)"); - - SQLUtil.executeStatements(queries, connection, failmsg); - } - - public void migrateRenameAttribute(String objectName, String oldAttributeName, String newAttributeName) throws SpecmateException { - String failmsg = "Migration: Could not rename column " + oldAttributeName + " in table " + objectName + "."; - List queries = new ArrayList<>(); - queries.add("ALTER TABLE " + objectName + " ALTER COLUMN " + oldAttributeName + " RENAME TO " + newAttributeName); - queries.add(renameExternalReference(objectName, oldAttributeName, newAttributeName)); - SQLUtil.executeStatements(queries, connection, failmsg); - } - - public void migrateChangeType(String objectName, String attributeName, EDataType targetType) throws SpecmateException { - ResultSet result = SQLUtil.getResult("SELECT TYPE_NAME, CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '" + - objectName.toUpperCase() + "' AND COLUMN_NAME = '" + attributeName.toUpperCase() + "'", connection); - String sourceTypeString = null; - int sourceSize = -1; - - String failmsg = "Migration: The data type for attribute " + attributeName + " could not be determined."; - try { - if ( result.next() ) { - sourceTypeString = result.getString(1); - sourceSize = result.getInt(2); - SQLUtil.closeResult(result); - } else { - throw new SpecmateException(failmsg); - } - } catch (SQLException e) { - throw new SpecmateException(failmsg); - } - - if (sourceTypeString == null) { - throw new SpecmateException(failmsg); - } - - failmsg = "Migration: The attribute " + attributeName + " can not be migrated."; - EDataType sourceType = EDataType.getFromTypeName(sourceTypeString); - if (sourceType == null) { - throw new SpecmateException(failmsg); - } - - sourceType.setSize(sourceSize); - failmsg = "Migration: Not possible to convert " + attributeName + - " from " + sourceType.getTypeName() + " to " + targetType.getTypeName() + "."; - if (!sourceType.isConversionPossibleTo(targetType)) { - throw new SpecmateException(failmsg); - } - - failmsg = "Migration: The attribute " + attributeName + " in object " + objectName + " could not be migrated."; - String query = "ALTER TABLE " + objectName + " ALTER COLUMN " + attributeName + " " + targetType.getTypeNameWithSize(); - SQLUtil.executeStatement(query, connection, failmsg); - } - - private boolean hasDefault(Object defaultValue) { - return defaultValue != null ? true : false; - } - - private void executeChange(String alterString, String objectName, String attributeName, boolean setDefault) throws SpecmateException { - String failmsg = "Migration: Could not add column " + attributeName + " to table " + objectName + "."; - List queries = new ArrayList<>(); - queries.add(alterString); - - if (setDefault) { - queries.add("UPDATE " + objectName + - " SET " + attributeName + - " = DEFAULT"); - } - - List attributeNames = new ArrayList<>(); - attributeNames.add(attributeName); - - queries.addAll(insertExternalAttributeReferences(objectName, attributeNames)); - - SQLUtil.executeStatements(queries, connection, failmsg); - } -} \ No newline at end of file diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/EDataType.java b/bundles/specmate-migration/src/com/specmate/migration/h2/EDataType.java deleted file mode 100644 index 1d306762c..000000000 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/EDataType.java +++ /dev/null @@ -1,130 +0,0 @@ -package com.specmate.migration.h2; - -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Set; - -import com.specmate.common.SpecmateException; - -public enum EDataType { - BYTE(DataTypeConstants.TINYINT, false), - SHORT(DataTypeConstants.SMALLINT, false), - INT(DataTypeConstants.INT, false), - CHAR(DataTypeConstants.CHAR, true), - LONG(DataTypeConstants.LONG, false), - FLOAT(DataTypeConstants.FLOAT, false), - DOUBLE(DataTypeConstants.DOUBLE, false), - BOOLEAN(DataTypeConstants.BOOLEAN, false), - STRING(DataTypeConstants.STRING, true); - - private String typeName; - private Set aliases; - private int size; - private boolean hasSize; - private static Boolean[][] possibleConversions = new Boolean[EDataType.values().length][EDataType.values().length]; - private static HashMap dataTypeLookup = new HashMap<>(); - - EDataType(String[] typeNames, boolean hasSize) { - this.hasSize = hasSize; - this.size = -1; - this.aliases = new HashSet<>(); - if (typeNames.length > 0) { - typeName = typeNames[0]; - } - for (int i = 1; i < typeNames.length; i++) { - this.aliases.add(typeNames[i]); - } - } - - public boolean isConversionPossibleTo(EDataType target) throws SpecmateException { - if (target.hasSize && target.size < 0) { - throw new SpecmateException("Size for type " + getTypeName() + " not set."); - } - if (target.hasSize && this.size > target.size) { - throw new SpecmateException("Target size (" + target.size + ") is smaller than source size (" + this.size + ")."); - } - return possibleConversions[this.ordinal()][target.ordinal()]; - } - - public String getTypeName() { - return typeName; - } - - public String getTypeNameWithSize() { - String t = this.typeName; - if (hasSize) { - t = t + "(" + size + ")"; - } - return t; - } - - public void setSize(int size) { - this.size = size; - } - - public static EDataType getFromTypeName(String typeName) { - return dataTypeLookup.get(typeName); - } - - private static void definePossibleConversion(EDataType from, EDataType to) { - possibleConversions[from.ordinal()][to.ordinal()] = true; - } - - static { - int size = EDataType.values().length; - for(int i = 0; i < size; i++) { - for(int j = 0; j < size; j++) { - possibleConversions[i][j] = false; - } - } - - /** - * The following widening type conversions (see - * https://docs.oracle.com/javase/specs/jls/se8/html/jls-5.html#jls-5.1.2) - * are allowed: - * - byte to short, int, long, float, or double - * - short to int, long, float, or double - * - char to int, long, float, double, or string - * - int to long, float, or double - * - long to float or double - * - float to double - * - * In addition, we convert boolean types (true, false) to string literals ("true", "false") - * and parse the following string literals (case insensitive) to the corresponding boolean types: - * "t", "true", "f", "false" - */ - definePossibleConversion(EDataType.BYTE, EDataType.SHORT); - definePossibleConversion(EDataType.BYTE, EDataType.INT); - definePossibleConversion(EDataType.BYTE, EDataType.LONG); - definePossibleConversion(EDataType.BYTE, EDataType.FLOAT); - definePossibleConversion(EDataType.BYTE, EDataType.DOUBLE); - definePossibleConversion(EDataType.SHORT, EDataType.INT); - definePossibleConversion(EDataType.SHORT, EDataType.LONG); - definePossibleConversion(EDataType.SHORT, EDataType.FLOAT); - definePossibleConversion(EDataType.SHORT, EDataType.DOUBLE); - definePossibleConversion(EDataType.CHAR, EDataType.INT); - definePossibleConversion(EDataType.CHAR, EDataType.LONG); - definePossibleConversion(EDataType.CHAR, EDataType.FLOAT); - definePossibleConversion(EDataType.CHAR, EDataType.DOUBLE); - definePossibleConversion(EDataType.CHAR, EDataType.STRING); - definePossibleConversion(EDataType.INT, EDataType.LONG); - definePossibleConversion(EDataType.INT, EDataType.FLOAT); - definePossibleConversion(EDataType.INT, EDataType.DOUBLE); - definePossibleConversion(EDataType.LONG, EDataType.FLOAT); - definePossibleConversion(EDataType.LONG, EDataType.DOUBLE); - definePossibleConversion(EDataType.FLOAT, EDataType.DOUBLE); - definePossibleConversion(EDataType.BOOLEAN, EDataType.STRING); - definePossibleConversion(EDataType.STRING, EDataType.BOOLEAN); - - Arrays.asList(DataTypeConstants.TINYINT).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.BYTE);}); - Arrays.asList(DataTypeConstants.SMALLINT).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.SHORT);}); - Arrays.asList(DataTypeConstants.INT).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.INT);}); - Arrays.asList(DataTypeConstants.CHAR).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.CHAR);}); - Arrays.asList(DataTypeConstants.LONG).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.LONG);}); - Arrays.asList(DataTypeConstants.FLOAT).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.FLOAT);}); - Arrays.asList(DataTypeConstants.DOUBLE).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.DOUBLE);}); - Arrays.asList(DataTypeConstants.BOOLEAN).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.BOOLEAN);}); - Arrays.asList(DataTypeConstants.STRING).forEach(typeName -> {dataTypeLookup.put(typeName, EDataType.STRING);}); - } -} diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/ObjectToSQLMapper.java b/bundles/specmate-migration/src/com/specmate/migration/h2/ObjectToSQLMapper.java deleted file mode 100644 index 259cda44d..000000000 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/ObjectToSQLMapper.java +++ /dev/null @@ -1,46 +0,0 @@ -package com.specmate.migration.h2; - -import java.sql.Connection; -import java.util.ArrayList; -import java.util.List; - -import org.osgi.service.log.LogService; - -import com.specmate.common.SpecmateException; - -public class ObjectToSQLMapper extends SQLMapper { - - public ObjectToSQLMapper(Connection connection, LogService logService, String packageName, - String sourceVersion, String targetVersion) { - super(connection, logService, packageName, sourceVersion, targetVersion); - } - - public void newObject(String tableName) throws SpecmateException { - String failmsg = "Migration: Could not add table " + tableName + "."; - List queries = new ArrayList<>(); - - queries.add("CREATE TABLE " + tableName + "(" + - "CDO_ID BIGINT NOT NULL, " + - "CDO_VERSION INTEGER NOT NULL, " + - "CDO_CREATED BIGINT NOT NULL, " + - "CDO_REVISED BIGINT NOT NULL, " + - "CDO_RESOURCE BIGINT NOT NULL, " + - "CDO_CONTAINER BIGINT NOT NULL, " + - "CDO_FEATURE INTEGER NOT NULL)"); - - queries.add("CREATE UNIQUE INDEX " + - SQLUtil.createRandomIdentifier("PRIMARY_KEY_" + tableName) + - " ON " + tableName + " (CDO_ID ASC, CDO_VERSION ASC)"); - - queries.add("CREATE INDEX " + - SQLUtil.createRandomIdentifier("INDEX_" + tableName) - + " ON " + tableName + " (CDO_REVISED ASC)"); - - queries.add("ALTER TABLE " + tableName + " ADD CONSTRAINT " + - SQLUtil.createRandomIdentifier("CONSTRAINT_" + tableName) + - " PRIMARY KEY (CDO_ID, CDO_VERSION)"); - - queries.addAll(insertExternalObjectReference(tableName)); - SQLUtil.executeStatements(queries, connection, failmsg); - } -} diff --git a/bundles/specmate-migration/src/com/specmate/migration/h2/SQLMapper.java b/bundles/specmate-migration/src/com/specmate/migration/h2/SQLMapper.java deleted file mode 100644 index 6a5606c27..000000000 --- a/bundles/specmate-migration/src/com/specmate/migration/h2/SQLMapper.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.specmate.migration.h2; - -import java.sql.Connection; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import org.osgi.service.log.LogService; - -import com.specmate.common.SpecmateException; - -public abstract class SQLMapper { - protected static final String SPECMATE_URL = "http://specmate.com/"; - protected Connection connection; - protected String packageName; - protected String sourceVersion; - protected String targetVersion; - protected LogService logService; - - public SQLMapper(Connection connection, LogService logService, String packageName, String sourceVersion, String targetVersion) { - this.connection = connection; - this.logService = logService; - this.packageName = packageName; - this.sourceVersion = sourceVersion; - this.targetVersion = targetVersion; - } - - protected List insertExternalObjectReference(String objectName) throws SpecmateException { - int id = SQLUtil.getIntResult("SELECT id FROM CDO_EXTERNAL_REFS ORDER BY id ASC LIMIT 1", 1, connection); - - List queries = new ArrayList<>(); - String baseUri = SPECMATE_URL + targetVersion + "/" + packageName + "#//" + objectName; - id = id - 1; - queries.add(getInsertExternalReferenceQuery(baseUri, id)); - - return queries; - } - - protected List insertExternalAttributeReferences(String objectName, List attributeNames) throws SpecmateException { - int id = SQLUtil.getIntResult("SELECT id FROM CDO_EXTERNAL_REFS ORDER BY id ASC LIMIT 1", 1, connection); - - List queries = new ArrayList<>(); - String baseUri = SPECMATE_URL + targetVersion + "/" + packageName + "#//" + objectName; - - //queries.add(getInsertExternalReferenceQuery(baseUri, id)); - for (String name : attributeNames) { - id = id - 1; - String attributeUri = baseUri + "/" + name; - queries.add(getInsertExternalReferenceQuery(attributeUri, id)); - } - - return queries; - } - - protected String renameExternalReference(String objectName, String oldAttributeName, String newAttributeName) throws SpecmateException { - String baseUri = SPECMATE_URL + targetVersion + "/" + packageName + "#//" + objectName + "/"; - String oldUri = baseUri + oldAttributeName; - String newUri = baseUri + newAttributeName; - return "UPDATE CDO_EXTERNAL_REFS SET uri = '" + newUri + "' WHERE uri = '" + oldUri + "'"; - } - - private String getInsertExternalReferenceQuery(String uri, int id) { - Date now = new Date(); - return "INSERT INTO CDO_EXTERNAL_REFS (ID, URI, COMMITTIME) " + - "VALUES (" + id + ", '" + uri + "', " + now.getTime() + ")"; - } -} diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/BaseMigrator.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/BaseMigrator.java deleted file mode 100644 index d9762af5e..000000000 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/BaseMigrator.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.specmate.migration.internal.services; - -import org.osgi.service.component.annotations.Reference; -import org.osgi.service.log.LogService; - -import com.specmate.migration.api.IMigrator; - -public abstract class BaseMigrator implements IMigrator { - protected LogService logService; - - @Reference - public void setLogService(LogService logService) { - this.logService = logService; - } -} diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20170209.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20170209.java index 238cc2a27..ca991d91d 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20170209.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20170209.java @@ -8,7 +8,7 @@ import com.specmate.migration.api.IMigrator; @Component(property = "sourceVersion=20170209") -public class Migrator20170209 extends BaseMigrator implements IMigrator { +public class Migrator20170209 implements IMigrator { @Override public String getSourceVersion() { diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171228.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171228.java index 733dc02e8..feb668603 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171228.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171228.java @@ -10,7 +10,7 @@ import com.specmate.migration.api.IMigrator; @Component(property = "sourceVersion=20171228") -public class Migrator20171228 extends BaseMigrator implements IMigrator { +public class Migrator20171228 implements IMigrator { @Override public String getSourceVersion() { diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171231.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171231.java index c5049c10d..fa569ea4c 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171231.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20171231.java @@ -8,7 +8,7 @@ import com.specmate.migration.api.IMigrator; @Component(property = "sourceVersion=20171231") -public class Migrator20171231 extends BaseMigrator implements IMigrator { +public class Migrator20171231 implements IMigrator { @Override public String getSourceVersion() { diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180104.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180104.java index 9bbd2861e..91e51f01c 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180104.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180104.java @@ -8,7 +8,7 @@ import com.specmate.migration.api.IMigrator; @Component(property = "sourceVersion=20180104") -public class Migrator20180104 extends BaseMigrator implements IMigrator { +public class Migrator20180104 implements IMigrator { @Override public String getSourceVersion() { diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180126.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180126.java index 93b69b760..47a194d48 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180126.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180126.java @@ -5,15 +5,18 @@ import java.sql.SQLException; import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Reference; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; -import com.specmate.migration.h2.ObjectToSQLMapper; @Component(property = "sourceVersion=20180126", service = IMigrator.class) -public class Migrator20180126 extends BaseMigrator { +public class Migrator20180126 implements IMigrator { + private IDBProvider dbProvider; private static final String TABLE_EXTERNAL_REFS = "CDO_EXTERNAL_REFS"; @Override @@ -31,18 +34,19 @@ public void migrate(Connection connection) throws SpecmateException { updateExternalRefs(connection); // new attribute expected outcome - AttributeToSQLMapper expOutcomeAdded = new AttributeToSQLMapper(connection, logService, "model/processes", + IAttributeToSQLMapper expOutcomeAdded = dbProvider.getAttributeToSQLMapper("model/processes", getSourceVersion(), getTargetVersion()); + expOutcomeAdded.migrateNewStringAttribute("ProcessStep", "expectedOutcome", ""); // new object status String objectName = "Status"; - ObjectToSQLMapper oAdded = new ObjectToSQLMapper(connection, logService, "model/administration", - getSourceVersion(), getTargetVersion()); + IObjectToSQLMapper oAdded = dbProvider.getObjectToSQLMapper("model/administration", getSourceVersion(), + getTargetVersion()); oAdded.newObject(objectName); // new attribute value@Status - AttributeToSQLMapper valueAdded = new AttributeToSQLMapper(connection, logService, "model/administration", + IAttributeToSQLMapper valueAdded = dbProvider.getAttributeToSQLMapper("model/administration", getSourceVersion(), getTargetVersion()); // value is a reserved term, hence cdo will use the attribute name // "value0" @@ -61,6 +65,10 @@ private void updateExternalRefs(Connection connection) throws SpecmateException } catch (SQLException e) { throw new SpecmateException("Migration: Could not update external references table."); } + } + @Reference + public void setDBProvider(IDBProvider dbProvider) { + this.dbProvider = dbProvider; } } diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180412.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180412.java index 7f881709b..30285a5c2 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180412.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180412.java @@ -5,13 +5,16 @@ import org.osgi.service.component.annotations.Component; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; +import com.specmate.dbprovider.api.migration.IObjectToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; -import com.specmate.migration.h2.ObjectToSQLMapper; @Component(property = "sourceVersion=20180412", service = IMigrator.class) -public class Migrator20180412 extends BaseMigrator { - +public class Migrator20180412 implements IMigrator { + + private IDBProvider dbProvider; + @Override public String getSourceVersion() { return "20180412"; @@ -25,18 +28,20 @@ public String getTargetVersion() { @Override public void migrate(Connection connection) throws SpecmateException { String packageName = "model/user"; - // rename attributes in user Object (since "User" is a protected term in CDO, CDO adds a "0" to the name) - AttributeToSQLMapper aMapper = new AttributeToSQLMapper(connection, logService, packageName, - getSourceVersion(), getTargetVersion()); + // rename attributes in user Object (since "User" is a protected term in CDO, + // CDO adds a "0" to the name) + IAttributeToSQLMapper aMapper = dbProvider.getAttributeToSQLMapper(packageName, getSourceVersion(), + getTargetVersion()); + aMapper.migrateRenameAttribute("User0", "name", "userName"); aMapper.migrateRenameAttribute("User0", "passwordHash", "passWord"); aMapper.migrateRenameAttribute("User0", "salt", "projectName"); - + // Add new Object UserSession - ObjectToSQLMapper oMapper = new ObjectToSQLMapper(connection, logService, packageName, - getSourceVersion(), getTargetVersion()); + IObjectToSQLMapper oMapper = dbProvider.getObjectToSQLMapper(packageName, getSourceVersion(), + getTargetVersion()); oMapper.newObject("UserSession"); - + // Add attributes to UserSession aMapper.migrateNewStringAttribute("UserSession", "id", null); aMapper.migrateNewStringAttribute("UserSession", "allowedPathPattern", ""); diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180510.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180510.java index 5d43a55d2..692926f18 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180510.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180510.java @@ -3,14 +3,18 @@ import java.sql.Connection; import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Reference; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; @Component(property = "sourceVersion=20180510", service = IMigrator.class) -public class Migrator20180510 extends BaseMigrator { - +public class Migrator20180510 implements IMigrator { + + private IDBProvider dbProvider; + @Override public String getSourceVersion() { return "20180510"; @@ -23,12 +27,15 @@ public String getTargetVersion() { @Override public void migrate(Connection connection) throws SpecmateException { - AttributeToSQLMapper aMapper = new AttributeToSQLMapper(connection, logService, "model/user", - getSourceVersion(), getTargetVersion()); - + IAttributeToSQLMapper aMapper = dbProvider.getAttributeToSQLMapper("model/user", getSourceVersion(), + getTargetVersion()); + aMapper.migrateRenameAttribute("UserSession", "accessRights", "PPMRights"); aMapper.migrateNewIntegerAttribute("UserSession", "ALMRights", 0); } - + @Reference + public void setDBProvider(IDBProvider dbProvider) { + this.dbProvider = dbProvider; + } } diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180527.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180527.java index ecddbebbd..0b3bdb423 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180527.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180527.java @@ -3,13 +3,17 @@ import java.sql.Connection; import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Reference; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; @Component(property = "sourceVersion=20180527", service = IMigrator.class) -public class Migrator20180527 extends BaseMigrator { +public class Migrator20180527 implements IMigrator { + + private IDBProvider dbProvider; @Override public String getSourceVersion() { @@ -23,11 +27,15 @@ public String getTargetVersion() { @Override public void migrate(Connection connection) throws SpecmateException { - AttributeToSQLMapper aMapper = new AttributeToSQLMapper(connection, logService, "model/user", - getSourceVersion(), getTargetVersion()); - + IAttributeToSQLMapper aMapper = dbProvider.getAttributeToSQLMapper("model/user", getSourceVersion(), + getTargetVersion()); + aMapper.migrateRenameAttribute("UserSession", "PPMRights", "SourceSystem"); aMapper.migrateRenameAttribute("UserSession", "ALMRights", "TargetSystem"); } + @Reference + public void setDBProvider(IDBProvider dbProvider) { + this.dbProvider = dbProvider; + } } diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180529.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180529.java index 759e1a12c..a552ae06d 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180529.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180529.java @@ -3,13 +3,17 @@ import java.sql.Connection; import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Reference; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; @Component(property = "sourceVersion=20180529", service = IMigrator.class) -public class Migrator20180529 extends BaseMigrator { +public class Migrator20180529 implements IMigrator { + + private IDBProvider dbProvider; @Override public String getSourceVersion() { @@ -23,10 +27,14 @@ public String getTargetVersion() { @Override public void migrate(Connection connection) throws SpecmateException { - AttributeToSQLMapper aMapper = new AttributeToSQLMapper(connection, logService, "model/user", - getSourceVersion(), getTargetVersion()); + IAttributeToSQLMapper aMapper = dbProvider.getAttributeToSQLMapper("model/user", getSourceVersion(), + getTargetVersion()); aMapper.migrateNewStringAttribute("UserSession", "userName", ""); } + @Reference + public void setDBProvider(IDBProvider dbProvider) { + this.dbProvider = dbProvider; + } } diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180616.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180616.java index b8d8c8a05..ce1cfbb3d 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180616.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180616.java @@ -3,13 +3,17 @@ import java.sql.Connection; import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Reference; import com.specmate.common.SpecmateException; +import com.specmate.dbprovider.api.IDBProvider; +import com.specmate.dbprovider.api.migration.IAttributeToSQLMapper; import com.specmate.migration.api.IMigrator; -import com.specmate.migration.h2.AttributeToSQLMapper; @Component(property = "sourceVersion=20180616", service = IMigrator.class) -public class Migrator20180616 extends BaseMigrator { +public class Migrator20180616 implements IMigrator { + + private IDBProvider dbProvider; @Override public String getSourceVersion() { @@ -23,10 +27,14 @@ public String getTargetVersion() { @Override public void migrate(Connection connection) throws SpecmateException { - AttributeToSQLMapper aMapper = new AttributeToSQLMapper(connection, logService, "model/testspecification", + IAttributeToSQLMapper aMapper = dbProvider.getAttributeToSQLMapper("model/testspecification", getSourceVersion(), getTargetVersion()); aMapper.migrateNewBooleanAttribute("TestCase", "consistent", true); } + @Reference + public void setDBProvider(IDBProvider dbProvider) { + this.dbProvider = dbProvider; + } } diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180622.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180622.java index 337aee5dc..093c5b0a1 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180622.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/Migrator20180622.java @@ -8,7 +8,7 @@ import com.specmate.migration.api.IMigrator; @Component(property = "sourceVersion=20180622", service = IMigrator.class) -public class Migrator20180622 extends BaseMigrator { +public class Migrator20180622 implements IMigrator { @Override public String getSourceVersion() { diff --git a/bundles/specmate-migration/src/com/specmate/migration/internal/services/MigratorService.java b/bundles/specmate-migration/src/com/specmate/migration/internal/services/MigratorService.java index 5ef1050fc..42328d6c5 100644 --- a/bundles/specmate-migration/src/com/specmate/migration/internal/services/MigratorService.java +++ b/bundles/specmate-migration/src/com/specmate/migration/internal/services/MigratorService.java @@ -154,7 +154,7 @@ private void updateExternalRefs() throws SpecmateException { stmt.execute(); stmt.close(); } catch (SQLException e) { - throw new SpecmateException("Migration: Could not update external references table."); + throw new SpecmateException("Migration: Could not update external references table.", e); } } @@ -163,11 +163,11 @@ private void removeOldPackageUnits() throws SpecmateException { try { Connection connection = dbProviderService.getConnection(); PreparedStatement stmt = connection.prepareStatement( - "delete from " + TABLE_PACKAGE_UNITS + " where left(ID,19)='http://specmate.com'"); + "delete from " + TABLE_PACKAGE_UNITS + " where substr(ID,0,19)='http://specmate.com'"); stmt.execute(); stmt.close(); stmt = connection.prepareStatement( - "delete from " + TABLE_PACKAGE_INFOS + " where left(URI,19)='http://specmate.com'"); + "delete from " + TABLE_PACKAGE_INFOS + " where substr(URI,0,19)='http://specmate.com'"); stmt.execute(); stmt.close(); diff --git a/bundles/specmate-persistency-api/src/com/specmate/persistency/IHistoryProvider.java b/bundles/specmate-persistency-api/src/com/specmate/persistency/IHistoryProvider.java index 3202294c9..6e8a9c1d6 100644 --- a/bundles/specmate-persistency-api/src/com/specmate/persistency/IHistoryProvider.java +++ b/bundles/specmate-persistency-api/src/com/specmate/persistency/IHistoryProvider.java @@ -8,6 +8,8 @@ public interface IHistoryProvider { History getHistory(EObject object) throws SpecmateException; - History getHistoryRecursive(EObject object) throws SpecmateException; + History getContainerHistory(EObject object) throws SpecmateException; + + History getRecursiveHistory(EObject object) throws SpecmateException; } diff --git a/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/CDOPersistencyService.java b/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/CDOPersistencyService.java index 345fe96ee..a2a00bda8 100644 --- a/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/CDOPersistencyService.java +++ b/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/CDOPersistencyService.java @@ -253,7 +253,7 @@ private void createModelResource() { try { transaction.commit(); } catch (CommitException e) { - logService.log(LogService.LOG_ERROR, "Could not create resource " + resourceName); + logService.log(LogService.LOG_ERROR, "Could not create resource " + resourceName, e); } } @@ -271,7 +271,7 @@ private void registerPackages() { try { transaction.commit(); } catch (Exception e) { - logService.log(LogService.LOG_ERROR, "Could not commit packages to dummy resource"); + logService.log(LogService.LOG_ERROR, "Could not commit packages to dummy resource", e); } transaction.close(); } diff --git a/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/HistoryProviderImpl.java b/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/HistoryProviderImpl.java index 7817c5c57..61686a074 100644 --- a/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/HistoryProviderImpl.java +++ b/bundles/specmate-persistency-cdo/src/com/specmate/persistency/cdo/internal/HistoryProviderImpl.java @@ -36,7 +36,22 @@ public History getHistory(EObject object) throws SpecmateException { } @Override - public History getHistoryRecursive(EObject object) throws SpecmateException { + public History getContainerHistory(EObject object) throws SpecmateException { + History history = getHistory(object); + + List contents = object.eContents(); + for (EObject content : contents) { + CDOObject cdoObject = (CDOObject) content; + processHistory(cdoObject, history); + } + + sortHistory(history, false); + + return history; + } + + @Override + public History getRecursiveHistory(EObject object) throws SpecmateException { History history = getHistory(object); // Get all contents recursively @@ -47,29 +62,29 @@ public History getHistoryRecursive(EObject object) throws SpecmateException { // The current solution is to check changed elements if the change kind is // "REMOVED". // This will however also mark moved elements as deleted. + TreeIterator it = object.eAllContents(); while (it.hasNext()) { CDOObject cdoObject = (CDOObject) it.next(); - history = processHistory(cdoObject, history); + processHistory(cdoObject, history); } - // sort by date (new to old) + sortHistory(history, false); + + return history; + } + + private void sortHistory(History history, boolean ascending) { ECollections.sort(history.getEntries(), new Comparator() { @Override public int compare(HistoryEntry o1, HistoryEntry o2) { - if (o1.getTimestamp() < o2.getTimestamp()) { - return 1; + if (ascending) { + return (int) ((int) o1.getTimestamp() - o2.getTimestamp()); } - if (o1.getTimestamp() > o2.getTimestamp()) { - return -1; - } - - return 0; + return (int) (o2.getTimestamp() - o1.getTimestamp()); } }); - - return history; } private History processHistory(CDOObject cdoObject, History history) { diff --git a/bundles/specmate-scheduler/.classpath b/bundles/specmate-scheduler/.classpath new file mode 100644 index 000000000..b263de401 --- /dev/null +++ b/bundles/specmate-scheduler/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/specmate-scheduler/.gitignore b/bundles/specmate-scheduler/.gitignore new file mode 100644 index 000000000..57b341172 --- /dev/null +++ b/bundles/specmate-scheduler/.gitignore @@ -0,0 +1,2 @@ +/bin/ +/generated/ diff --git a/bundles/specmate-scheduler/.project b/bundles/specmate-scheduler/.project new file mode 100644 index 000000000..72486e530 --- /dev/null +++ b/bundles/specmate-scheduler/.project @@ -0,0 +1,23 @@ + + + specmate-scheduler + + + + + + org.eclipse.jdt.core.javabuilder + + + + + bndtools.core.bndbuilder + + + + + + org.eclipse.jdt.core.javanature + bndtools.core.bndnature + + diff --git a/bundles/specmate-scheduler/.settings/org.eclipse.core.resources.prefs b/bundles/specmate-scheduler/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..2c715ef3b --- /dev/null +++ b/bundles/specmate-scheduler/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/bnd.bnd=UTF-8 diff --git a/bundles/specmate-scheduler/.settings/org.eclipse.jdt.core.prefs b/bundles/specmate-scheduler/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..bb35fa0a8 --- /dev/null +++ b/bundles/specmate-scheduler/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,11 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/bundles/specmate-scheduler/bnd.bnd b/bundles/specmate-scheduler/bnd.bnd new file mode 100644 index 000000000..edd407986 --- /dev/null +++ b/bundles/specmate-scheduler/bnd.bnd @@ -0,0 +1,4 @@ +Export-Package: \ + com.specmate.scheduler,\ + com.specmate.scheduler.iterators +-buildpath: specmate-common;version=latest \ No newline at end of file diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/Scheduler.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/Scheduler.java new file mode 100644 index 000000000..dda315c96 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/Scheduler.java @@ -0,0 +1,96 @@ +package com.specmate.scheduler; + +import java.util.Date; +import java.util.Timer; +import java.util.TimerTask; + +import com.specmate.scheduler.iterators.ScheduleIterator; + + +/** + * A facility for threads to schedule recurring tasks for future execution in a background thread. + *

+ * This class is thread-safe: multiple threads can share a single Scheduler object without the need for external synchronization. + *

+ * Implementation note: internally Scheduler uses a java.util.Timer to schedule tasks. + */ +public class Scheduler { + + class SchedulerTimerTask extends TimerTask { + private SchedulerTask schedulerTask; + private ScheduleIterator iterator; + public SchedulerTimerTask(SchedulerTask schedulerTask, + ScheduleIterator iterator) { + this.schedulerTask = schedulerTask; + this.iterator = iterator; + } + public void run() { + schedulerTask.run(); + reschedule(schedulerTask, iterator); + } + } + + private final Timer timer = new Timer(); + + public Scheduler() { + } + +/** + * Terminates this Scheduler, discarding any currently scheduled tasks. Does not interfere with a currently executing task (if it exists). Once a scheduler has been terminated, its execution thread terminates gracefully, and no more tasks may be scheduled on it. + *

+ * Note that calling this method from within the run method of a scheduler task that was invoked by this scheduler absolutely guarantees that the ongoing task execution is the last task execution that will ever be performed by this scheduler. + *

+ * This method may be called repeatedly; the second and subsequent calls have no effect. + */ + + public void cancel() { + timer.cancel(); + } + +/** + * Schedules the specified task for execution according to the specified schedule. If times specified by the ScheduleIterator are in the past they are scheduled for immediate execution. + *

+ * @param schedulerTask task to be scheduled + * @param iterator iterator that describes the schedule + * @throws IllegalStateException if task was already scheduled or cancelled, scheduler was cancelled, or scheduler thread terminated. + */ + + public void schedule(SchedulerTask schedulerTask, + ScheduleIterator iterator) { + + Date time = iterator.next(); + if (time == null) { + schedulerTask.cancel(); + } else { + synchronized(schedulerTask.lock) { + if (schedulerTask.state != SchedulerTask.VIRGIN) { + throw new IllegalStateException("Task already scheduled " + + "or cancelled"); + } + schedulerTask.state = SchedulerTask.SCHEDULED; + schedulerTask.timerTask = + new SchedulerTimerTask(schedulerTask, iterator); + timer.schedule(schedulerTask.timerTask, time); + } + } + } + + private void reschedule(SchedulerTask schedulerTask, + ScheduleIterator iterator) { + + Date time = iterator.next(); + if (time == null) { + schedulerTask.cancel(); + } else { + synchronized(schedulerTask.lock) { + if (schedulerTask.state != SchedulerTask.CANCELLED) { + schedulerTask.timerTask = + new SchedulerTimerTask(schedulerTask, iterator); + timer.schedule(schedulerTask.timerTask, time); + } + } + } + } + +} + diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/SchedulerIteratorFactory.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/SchedulerIteratorFactory.java new file mode 100644 index 000000000..40b40b775 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/SchedulerIteratorFactory.java @@ -0,0 +1,98 @@ +package com.specmate.scheduler; + +import java.util.Arrays; +import com.specmate.common.SpecmateException; +import com.specmate.common.SpecmateValidationException; +import com.specmate.scheduler.iterators.DailyIterator; +import com.specmate.scheduler.iterators.HourlyIterator; +import com.specmate.scheduler.iterators.MinuteIterator; +import com.specmate.scheduler.iterators.ScheduleIterator; + +public class SchedulerIteratorFactory { + + private static final String DAY = "day".toLowerCase(); + private static final String MINUTE = "minute".toLowerCase(); + private static final String HOUR = "hour".toLowerCase(); + + private static final String DELIM = " "; + + public static ScheduleIterator create(String schedule) throws SpecmateException, SpecmateValidationException { + validate(schedule); + schedule = normalizeScheduleString(schedule); + return constructScheduleIterator(schedule); + } + + private static ScheduleIterator constructScheduleIterator(String schedule) throws SpecmateException { + + String type = getType(schedule); + int[] args = getArgs(schedule); + + if (type.equalsIgnoreCase(DAY)) { + return new DailyIterator(args); + } + if (type.equalsIgnoreCase(HOUR)) { + return new HourlyIterator(args); + } + if (type.equalsIgnoreCase(MINUTE)) { + return new MinuteIterator(args); + } + throw new SpecmateException("Invalid scheduler type"); + } + + public static void validate(String schedule) throws SpecmateValidationException { + if (schedule == null) { + throw new SpecmateValidationException("Schedule must not be null."); + } + + schedule = normalizeScheduleString(schedule); + + if (schedule.length() < 0) { + throw new SpecmateValidationException("Schedule length must be greater than 0."); + } + + String type = getType(schedule); + + String[] validTypesStr = { DAY, HOUR, MINUTE }; + boolean isValidType = Arrays.stream(validTypesStr) + .anyMatch(validType -> validType.compareToIgnoreCase(type) == 0); + if (!isValidType) { + throw new SpecmateValidationException( + "Invalid type (" + type + "). Valid types are " + String.join(", ", validTypesStr)); + } + + String[] argumentsStr = getArgsStrs(schedule); + for (String argStr : argumentsStr) { + try { + Integer.parseInt(argStr); + } catch (NumberFormatException nfe) { + throw new SpecmateValidationException( + "Invalid argument for schedule: " + argStr + " (Must be integer)"); + } + } + + } + + private static String normalizeScheduleString(String schedule) { + return schedule.replaceAll(" {2,}", " ").trim(); + } + + private static String getType(String schedule) { + String[] parts = schedule.split(DELIM); + return parts[0]; + } + + private static int[] getArgs(String schedule) { + String[] argumentsStr = getArgsStrs(schedule); + return Arrays.stream(argumentsStr).mapToInt(Integer::parseInt).toArray(); + } + + private static String[] getArgsStrs(String schedule) { + String[] parts = schedule.split(DELIM); + if (parts.length <= 1) { + String[] empty = new String[0]; + return empty; + } + String[] argumentsStr = Arrays.copyOfRange(parts, 1, parts.length - 1); + return argumentsStr; + } +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/SchedulerTask.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/SchedulerTask.java new file mode 100644 index 000000000..0706dc454 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/SchedulerTask.java @@ -0,0 +1,62 @@ +package com.specmate.scheduler; + +import java.util.TimerTask; + + +/** + * A task that can be scheduled for recurring execution by a {@link Scheduler}. + */ +public abstract class SchedulerTask implements Runnable { + + final Object lock = new Object(); + + int state = VIRGIN; + static final int VIRGIN = 0; + static final int SCHEDULED = 1; + static final int CANCELLED = 2; + + TimerTask timerTask; + +/** + * Creates a new scheduler task. + */ + + protected SchedulerTask() { + } + +/** + * The action to be performed by this scheduler task. + */ + + public abstract void run(); + +/** + * Cancels this scheduler task. + *

+ * This method may be called repeatedly; the second and subsequent calls have no effect. + * @return true if this task was already scheduled to run + */ + + public boolean cancel() { + synchronized(lock) { + if (timerTask != null) { + timerTask.cancel(); + } + boolean result = (state == SCHEDULED); + state = CANCELLED; + return result; + } + } + +/** + * Returns the scheduled execution time of the most recent actual execution of this task. (If this method is invoked while task execution is in progress, the return value is the scheduled execution time of the ongoing task execution.) + * @return the time at which the most recent execution of this task was scheduled to occur, in the format returned by Date.getTime(). The return value is undefined if the task has yet to commence its first execution. + */ + + public long scheduledExecutionTime() { + synchronized(lock) { + return timerTask == null ? 0 : timerTask.scheduledExecutionTime(); + } + } + +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/CompositeIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/CompositeIterator.java new file mode 100644 index 000000000..8d785f536 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/CompositeIterator.java @@ -0,0 +1,46 @@ +package com.specmate.scheduler.iterators; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Date; + +/** + * A CompositeIterator combines a number of + * {@link ScheduleIterator}s into a single {@link ScheduleIterator}. Duplicate + * dates are removed. + */ +public class CompositeIterator implements ScheduleIterator { + + private List orderedTimes = new ArrayList(); + private List orderedIterators = new ArrayList(); + + public CompositeIterator(ScheduleIterator[] scheduleIterators) { + for (int i = 0; i < scheduleIterators.length; i++) { + insert(scheduleIterators[i]); + } + } + + private void insert(ScheduleIterator scheduleIterator) { + Date time = scheduleIterator.next(); + if (time == null) { + return; + } + int index = Collections.binarySearch(orderedTimes, time); + if (index < 0) { + index = -index - 1; + } + orderedTimes.add(index, time); + orderedIterators.add(index, scheduleIterator); + } + + public synchronized Date next() { + Date next = null; + while (!orderedTimes.isEmpty() && (next == null || next.equals(orderedTimes.get(0)))) { + next = orderedTimes.remove(0); + insert(orderedIterators.remove(0)); + } + return next; + } + +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/DailyIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/DailyIterator.java new file mode 100644 index 000000000..b566fadcb --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/DailyIterator.java @@ -0,0 +1,44 @@ +package com.specmate.scheduler.iterators; + +import java.util.Calendar; +import java.util.Date; + +/** + * A DailyIterator returns a sequence of dates on subsequent days + * representing the same time each day. + */ +public class DailyIterator implements ScheduleIterator { + private final Calendar calendar = Calendar.getInstance(); + + public DailyIterator(int... time) { + this(getHourOfDay(time), getMinute(time), getSecond(time), new Date()); + } + + public DailyIterator(int hourOfDay, int minute, int second, Date date) { + calendar.setTime(date); + calendar.set(Calendar.HOUR_OF_DAY, hourOfDay); + calendar.set(Calendar.MINUTE, minute); + calendar.set(Calendar.SECOND, second); + calendar.set(Calendar.MILLISECOND, 0); + if (!calendar.getTime().before(date)) { + calendar.add(Calendar.DATE, -1); + } + } + + public Date next() { + calendar.add(Calendar.DATE, 1); + return calendar.getTime(); + } + + private static int getHourOfDay(int... time) { + return SchedulerUtils.getNumberIfExistsOrZero(0, time); + } + + private static int getMinute(int... time) { + return SchedulerUtils.getNumberIfExistsOrZero(1, time); + } + + private static int getSecond(int... time) { + return SchedulerUtils.getNumberIfExistsOrZero(2, time); + } +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/HourlyIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/HourlyIterator.java new file mode 100644 index 000000000..d341aaad8 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/HourlyIterator.java @@ -0,0 +1,39 @@ +package com.specmate.scheduler.iterators; + +import java.util.Calendar; +import java.util.Date; + +/** + * A DailyIterator returns a sequence of dates on subsequent days + * representing the same time each day. + */ +public class HourlyIterator implements ScheduleIterator { + private final Calendar calendar = Calendar.getInstance(); + + public HourlyIterator(int... time) { + this(getMinute(time), getSecond(time), new Date()); + } + + public HourlyIterator(int minute, int second, Date date) { + calendar.setTime(date); + calendar.set(Calendar.MINUTE, minute); + calendar.set(Calendar.SECOND, second); + calendar.set(Calendar.MILLISECOND, 0); + if (!calendar.getTime().before(date)) { + calendar.add(Calendar.DATE, -1); + } + } + + public Date next() { + calendar.add(Calendar.HOUR_OF_DAY, 1); + return calendar.getTime(); + } + + private static int getMinute(int... time) { + return SchedulerUtils.getNumberIfExistsOrZero(0, time); + } + + private static int getSecond(int... time) { + return SchedulerUtils.getNumberIfExistsOrZero(1, time); + } +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/MinuteIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/MinuteIterator.java new file mode 100644 index 000000000..956ed7b42 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/MinuteIterator.java @@ -0,0 +1,34 @@ +package com.specmate.scheduler.iterators; + +import java.util.Calendar; +import java.util.Date; + +/** + * A DailyIterator returns a sequence of dates on subsequent days + * representing the same time each day. + */ +public class MinuteIterator implements ScheduleIterator { + private final Calendar calendar = Calendar.getInstance(); + + public MinuteIterator(int... time) { + this(getSecond(time), new Date()); + } + + public MinuteIterator(int second, Date date) { + calendar.setTime(date); + calendar.set(Calendar.SECOND, second); + calendar.set(Calendar.MILLISECOND, 0); + if (!calendar.getTime().before(date)) { + calendar.add(Calendar.DATE, -1); + } + } + + public Date next() { + calendar.add(Calendar.MINUTE, 1); + return calendar.getTime(); + } + + private static int getSecond(int... time) { + return SchedulerUtils.getNumberIfExistsOrZero(0, time); + } +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/OffsetIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/OffsetIterator.java new file mode 100644 index 000000000..7c07d8852 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/OffsetIterator.java @@ -0,0 +1,32 @@ +package com.specmate.scheduler.iterators; + +import java.util.Calendar; +import java.util.Date; + +/** + * An OffsetIterator modifies the dates returned by a + * {@link ScheduleIterator} by a constant calendar offset. + */ +public class OffsetIterator implements ScheduleIterator { + + private final ScheduleIterator scheduleIterator; + private final int field; + private final int offset; + private final Calendar calendar = Calendar.getInstance(); + + public OffsetIterator(ScheduleIterator scheduleIterator, int field, int offset) { + this.scheduleIterator = scheduleIterator; + this.field = field; + this.offset = offset; + } + + public Date next() { + Date date = scheduleIterator.next(); + if (date == null) { + return null; + } + calendar.setTime(date); + calendar.add(field, offset); + return calendar.getTime(); + } +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/RestrictedDailyIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/RestrictedDailyIterator.java new file mode 100644 index 000000000..d8c3aabc3 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/RestrictedDailyIterator.java @@ -0,0 +1,41 @@ +package com.specmate.scheduler.iterators; + +import java.util.Arrays; +import java.util.Calendar; +import java.util.Date; + +/** + * A RestrictedDailyIterator returns a sequence of dates on + * subsequent days (restricted to a set of days, e.g. weekdays only) + * representing the same time each day. + */ +public class RestrictedDailyIterator implements ScheduleIterator { + private final int[] days; + private final Calendar calendar = Calendar.getInstance(); + + public RestrictedDailyIterator(int hourOfDay, int minute, int second, int[] days) { + this(hourOfDay, minute, second, days, new Date()); + } + + public RestrictedDailyIterator(int hourOfDay, int minute, int second, int[] days, Date date) { + this.days = (int[]) days.clone(); + Arrays.sort(this.days); + + calendar.setTime(date); + calendar.set(Calendar.HOUR_OF_DAY, hourOfDay); + calendar.set(Calendar.MINUTE, minute); + calendar.set(Calendar.SECOND, second); + calendar.set(Calendar.MILLISECOND, 0); + if (!calendar.getTime().before(date)) { + calendar.add(Calendar.DATE, -1); + } + } + + public Date next() { + do { + calendar.add(Calendar.DATE, 1); + } while (Arrays.binarySearch(days, calendar.get(Calendar.DAY_OF_WEEK)) < 0); + return calendar.getTime(); + } + +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/ScheduleIterator.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/ScheduleIterator.java new file mode 100644 index 000000000..366680cf2 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/ScheduleIterator.java @@ -0,0 +1,21 @@ +package com.specmate.scheduler.iterators; + +import java.util.Date; + +import com.specmate.scheduler.SchedulerTask; + +/** + * Implementations of ScheduleIterator specify a schedule as a + * series of java.util.Date objects. + */ + +public interface ScheduleIterator { + + /** + * Returns the next time that the related {@link SchedulerTask} should be + * run. + * + * @return the next time of execution + */ + public Date next(); +} diff --git a/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/SchedulerUtils.java b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/SchedulerUtils.java new file mode 100644 index 000000000..826990f17 --- /dev/null +++ b/bundles/specmate-scheduler/src/com/specmate/scheduler/iterators/SchedulerUtils.java @@ -0,0 +1,7 @@ +package com.specmate.scheduler.iterators; + +public class SchedulerUtils { + public static int getNumberIfExistsOrZero(int index, int... args) { + return args.length > index ? args[index] : 0; + } +} diff --git a/bundles/specmate-std-env/bnd.bnd b/bundles/specmate-std-env/bnd.bnd index 8a9da0cdf..c58cc9ded 100644 --- a/bundles/specmate-std-env/bnd.bnd +++ b/bundles/specmate-std-env/bnd.bnd @@ -1 +1,2 @@ -Bundle-Name: specmate application \ No newline at end of file +Bundle-Name: specmate application +-sub: *.bnd \ No newline at end of file diff --git a/bundles/specmate-std-env/dev-specmate-all-oracle.bndrun b/bundles/specmate-std-env/dev-specmate-all-oracle.bndrun new file mode 100644 index 000000000..e39bb3829 --- /dev/null +++ b/bundles/specmate-std-env/dev-specmate-all-oracle.bndrun @@ -0,0 +1,201 @@ +-runfw: org.eclipse.osgi;version='[3.10.2.v20150203-1939,3.10.2.v20150203-1939]' +-runee: JavaSE-1.8 +-runrequires: \ + osgi.identity;filter:='(osgi.identity=specmate-cdo-server)',\ + osgi.identity;filter:='(osgi.identity=org.apache.felix.gogo.command)',\ + osgi.identity;filter:='(osgi.identity=org.apache.felix.gogo.shell)',\ + osgi.identity;filter:='(osgi.identity=org.glassfish.hk2.locator)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.log)',\ + osgi.identity;filter:='(osgi.identity=jul.to.slf4j)',\ + osgi.identity;filter:='(osgi.identity=log4j.over.slf4j)',\ + osgi.identity;filter:='(osgi.identity=specmate-common)',\ + osgi.identity;filter:='(osgi.identity=specmate-emfjson)',\ + osgi.identity;filter:='(osgi.identity=specmate-logging)',\ + osgi.identity;filter:='(osgi.identity=specmate-logging-slf4j)',\ + osgi.identity;filter:='(osgi.identity=specmate-logging-slf4j-julbridge)',\ + osgi.identity;filter:='(osgi.identity=specmate-persistency-api)',\ + osgi.identity;filter:='(osgi.identity=org.glassfish.jersey.containers.jersey-container-servlet)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.event)',\ + osgi.identity;filter:='(osgi.identity=specmate-emfrest)',\ + osgi.identity;filter:='(osgi.identity=specmate-model-gen)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.cm)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.metatype)',\ + osgi.identity;filter:='(osgi.identity=specmate-model-support)',\ + osgi.identity;filter:='(osgi.identity=specmate-ui-core)',\ + osgi.identity;filter:='(osgi.identity=specmate-dummy-data)',\ + osgi.identity;filter:='(osgi.identity=specmate-config)',\ + osgi.identity;filter:='(osgi.identity=specmate-connectors)',\ + osgi.identity;filter:='(osgi.identity=specmate-testspecification)',\ + osgi.identity;filter:='(osgi.identity=specmate-hp-connector)',\ + osgi.identity;filter:='(osgi.identity=org.apache.felix.scr)',\ + osgi.identity;filter:='(&(osgi.identity=org.apache.felix.webconsole)(version>=4.3.0))',\ + osgi.identity;filter:='(&(osgi.identity=org.eclipse.jetty.osgi.boot)(version>=9.4.6))',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.jetty.osgi.httpservice)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.jetty.rewrite)',\ + osgi.identity;filter:='(osgi.identity=specmate-jettystarter)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.emf.cdo.server.ocl)',\ + osgi.identity;filter:='(osgi.identity=org.json)',\ + osgi.identity;filter:='(osgi.identity=specmate-file-connector)',\ + osgi.identity;filter:='(osgi.identity=specmate-search)',\ + osgi.identity;filter:='(osgi.identity=specmate-migration)',\ + osgi.identity;filter:='(osgi.identity=specmate-persistency-cdo)',\ + osgi.identity;filter:='(osgi.identity=specmate-administration)',\ + osgi.identity;filter:='(osgi.identity=org.apache.commons.fileupload)',\ + osgi.identity;filter:='(osgi.identity=specmate-trello-connector)',\ + osgi.identity;filter:='(osgi.identity=specmate-auth-api)',\ + osgi.identity;filter:='(osgi.identity=specmate-auth)',\ + osgi.identity;filter:='(osgi.identity=specmate-dbprovider-api)',\ + osgi.identity;filter:='(osgi.identity=specmate-jira-connector)',\ + bnd.identity;id='specmate-dbprovider-oracle' +-runbundles: \ + javassist;version='[3.18.1,3.18.2)',\ + javax.annotation-api;version='[1.2.0,1.2.1)',\ + javax.validation.api;version='[1.1.0,1.1.1)',\ + javax.ws.rs-api;version='[2.0.1,2.0.2)',\ + jul.to.slf4j;version='[1.7.12,1.7.13)',\ + log4j.over.slf4j;version='[1.7.12,1.7.13)',\ + org.apache.felix.gogo.command;version='[0.10.0,0.10.1)',\ + org.apache.felix.gogo.runtime;version='[0.10.0,0.10.1)',\ + org.apache.felix.gogo.shell;version='[0.10.0,0.10.1)',\ + org.eclipse.core.contenttype;version='[3.4.200,3.4.201)',\ + org.eclipse.core.jobs;version='[3.6.1,3.6.2)',\ + org.eclipse.core.runtime;version='[3.10.0,3.10.1)',\ + org.eclipse.emf.ecore.change;version='[2.11.0,2.11.1)',\ + org.eclipse.equinox.app;version='[1.3.200,1.3.201)',\ + org.eclipse.equinox.cm;version='[1.1.0,1.1.1)',\ + org.eclipse.equinox.common;version='[3.6.200,3.6.201)',\ + org.eclipse.equinox.event;version='[1.3.100,1.3.101)',\ + org.eclipse.equinox.log;version='[1.2.300,1.2.301)',\ + org.eclipse.equinox.metatype;version='[1.4.0,1.4.1)',\ + org.eclipse.equinox.preferences;version='[3.5.200,3.5.201)',\ + org.eclipse.equinox.registry;version='[3.5.400,3.5.401)',\ + org.eclipse.osgi.services;version='[3.4.0,3.4.1)',\ + org.glassfish.hk2.api;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.external.aopalliance-repackaged;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.external.javax.inject;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.locator;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.osgi-resource-locator;version='[1.0.1,1.0.2)',\ + org.glassfish.hk2.utils;version='[2.4.0,2.4.1)',\ + org.glassfish.jersey.bundles.repackaged.jersey-guava;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.containers.jersey-container-servlet;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.containers.jersey-container-servlet-core;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.core.jersey-client;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.core.jersey-common;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.core.jersey-server;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.media.jersey-media-sse;version='[2.17.0,2.17.1)',\ + org.json;version=snapshot,\ + org.slf4j.api;version='[1.7.2,1.7.3)',\ + slf4j.api;version='[1.7.12,1.7.13)',\ + specmate-common;version=snapshot,\ + specmate-emfjson;version=snapshot,\ + specmate-emfrest;version=snapshot,\ + specmate-logging;version=snapshot,\ + specmate-logging-slf4j;version=snapshot,\ + specmate-logging-slf4j-julbridge;version=snapshot,\ + specmate-model-gen;version=snapshot,\ + specmate-persistency-api;version=snapshot,\ + specmate-persistency-cdo;version=snapshot,\ + specmate-model-support;version=snapshot,\ + specmate-ui-core;version=snapshot,\ + specmate-dummy-data;version=snapshot,\ + specmate-config;version=snapshot,\ + specmate-connectors;version=snapshot,\ + org.eclipse.emf.cdo;version='[4.5.0,4.5.1)',\ + org.eclipse.emf.cdo.common;version='[4.5.0,4.5.1)',\ + org.eclipse.emf.cdo.ecore.retrofit;version='[4.2.300,4.2.301)',\ + org.eclipse.emf.cdo.net4j;version='[4.1.400,4.1.401)',\ + org.eclipse.emf.cdo.server;version='[4.5.0,4.5.1)',\ + org.eclipse.emf.cdo.server.net4j;version='[4.1.300,4.1.301)',\ + org.eclipse.emf.common;version='[2.12.0,2.12.1)',\ + org.eclipse.emf.ecore;version='[2.12.0,2.12.1)',\ + org.eclipse.emf.ecore.xmi;version='[2.12.0,2.12.1)',\ + org.eclipse.net4j;version='[4.5.0,4.5.1)',\ + org.eclipse.net4j.tcp;version='[4.1.400,4.1.401)',\ + org.eclipse.net4j.util;version='[3.6.0,3.6.1)',\ + com.google.guava;version='[21.0.0,21.0.1)',\ + specmate-hp-connector;version=snapshot,\ + specmate-testspecification;version=snapshot,\ + org.apache.felix.scr;version='[2.0.8,2.0.9)',\ + org.apache.commons.fileupload;version='[1.3.1,1.3.2)',\ + org.apache.commons.io;version='[2.4.0,2.4.1)',\ + org.apache.felix.webconsole;version='[4.3.0,4.3.1)',\ + org.eclipse.equinox.http.servlet;version='[1.1.500,1.1.501)',\ + org.eclipse.jetty.deploy;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.http;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.io;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.osgi-servlet-api;version='[3.1.0,3.1.1)',\ + org.eclipse.jetty.osgi.boot;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.osgi.httpservice;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.rewrite;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.security;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.server;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.servlet;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.util;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.webapp;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.xml;version='[9.4.6,9.4.7)',\ + org.eclipse.equinox.http.jetty;version='[3.0.200,3.0.201)',\ + org.eclipse.jetty.continuation;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.http;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.io;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.security;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.server;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.servlet;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.util;version='[8.1.16,8.1.17)',\ + specmate-jettystarter;version=snapshot,\ + lpg.runtime.java;version='[2.0.17,2.0.18)',\ + org.eclipse.emf.cdo.server.ocl;version='[4.2.100,4.2.101)',\ + org.eclipse.ocl;version='[3.6.200,3.6.201)',\ + org.eclipse.ocl.common;version='[1.4.200,1.4.201)',\ + org.eclipse.ocl.ecore;version='[3.6.200,3.6.201)',\ + org.sat4j.core;version='[2.3.5,2.3.6)',\ + org.jgrapht.core;version='[1.0.1,1.0.2)',\ + org.apache.commons.cli;version='[1.4.0,1.4.1)',\ + org.sat4j.maxsat;version='[2.3.5,2.3.6)',\ + org.sat4j.pb;version='[2.3.5,2.3.6)',\ + specmate-file-connector;version=snapshot,\ + org.apache.servicemix.bundles.jakarta-regexp;version='[1.4.0,1.4.1)',\ + org.apache.servicemix.bundles.lucene;version='[7.2.0,7.2.1)',\ + org.apache.servicemix.bundles.lucene-queries;version='[7.2.0,7.2.1)',\ + org.apache.servicemix.bundles.lucene-queryparser;version='[7.2.0,7.2.1)',\ + org.apache.servicemix.bundles.lucene-sandbox;version='[7.2.0,7.2.1)',\ + specmate-search;version=snapshot,\ + specmate-migration;version=snapshot,\ + specmate-administration;version=snapshot,\ + specmate-emfrest-api;version=snapshot,\ + specmate-trello-connector;version=snapshot,\ + specmate-auth-api;version=snapshot,\ + specmate-auth;version=snapshot,\ + specmate-dbprovider-api;version=snapshot,\ + org.eclipse.net4j.db;version='[4.5.0,4.5.1)',\ + org.eclipse.net4j.db.jdbc;version='[4.3.100,4.3.101)',\ + specmate-config-api;version=snapshot,\ + com.diffplug.osgi.extension.sun.misc;version='[0.0.0,0.0.1)',\ + io.prometheus.simpleclient;version='[0.4.0,0.4.1)',\ + io.prometheus.simpleclient_common;version='[0.4.0,0.4.1)',\ + io.prometheus.simpleclient_servlet;version='[0.4.0,0.4.1)',\ + specmate-metrics;version=snapshot,\ + io.prometheus.simpleclient_hotspot;version='[0.4.0,0.4.1)',\ + specmate-cdo-server;version=snapshot,\ + org.apache.commons.lang3;version='[3.3.2,3.3.3)',\ + org.eclipse.emf.cdo.server.db;version='[4.4.0,4.4.1)',\ + specmate-jira-connector;version=snapshot,\ + javax.el;version='[2.2.0,2.2.1)',\ + com.sun.jersey.core;version='[1.19.0,1.19.1)',\ + com.sun.jersey.jersey-server;version='[1.19.0,1.19.1)',\ + javax.ws.rs.jsr311-api;version='[1.1.1,1.1.2)',\ + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot,\ + org.eclipse.net4j.db.oracle;version='[1.1.200,1.1.201)',\ + org.objectweb.asm.all.debug;version='[5.0.2,5.0.3)',\ + specmate-dbprovider-oracle;version=snapshot + +-runproperties: \ + jetty.http.port=8080,\ + jetty.etc.config.urls='etc/jetty.xml,etc/jetty-http.xml,etc/jetty-deployer.xml,etc/jetty-rewrite.xml',\ + osgi.console=,\ + jetty.home.bundle=specmate-jettystarter,\ + osgi.compatibility.bootdelegation=true +-runrepos: \ + Workspace,\ + Local +-runvm: -Xmx6000m, -Djdk.crypto.KeyAgreement.legacyKDF=true \ No newline at end of file diff --git a/bundles/specmate-std-env/dev-specmate-all.bndrun b/bundles/specmate-std-env/dev-specmate-all.bndrun index 739c9809b..ddc1f26d9 100644 --- a/bundles/specmate-std-env/dev-specmate-all.bndrun +++ b/bundles/specmate-std-env/dev-specmate-all.bndrun @@ -186,7 +186,8 @@ com.sun.jersey.core;version='[1.19.0,1.19.1)',\ com.sun.jersey.jersey-server;version='[1.19.0,1.19.1)',\ javax.ws.rs.jsr311-api;version='[1.1.1,1.1.2)',\ - specmate-rest;version=snapshot + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot -runproperties: \ jetty.http.port=8080,\ @@ -197,5 +198,4 @@ -runrepos: \ Workspace,\ Local --runvm: -Xmx6000m\n\ - -Djdk.crypto.KeyAgreement.legacyKDF=true \ No newline at end of file +-runvm: -Xmx6000m, -Djdk.crypto.KeyAgreement.legacyKDF=true \ No newline at end of file diff --git a/bundles/specmate-std-env/dev-specmate-no-cdo-server.bndrun b/bundles/specmate-std-env/dev-specmate-no-cdo-server.bndrun new file mode 100644 index 000000000..5fa716131 --- /dev/null +++ b/bundles/specmate-std-env/dev-specmate-no-cdo-server.bndrun @@ -0,0 +1,182 @@ +-runfw: org.eclipse.osgi;version='[3.10.2.v20150203-1939,3.10.2.v20150203-1939]' +-runee: JavaSE-1.8 +-runrequires: \ + osgi.identity;filter:='(osgi.identity=org.glassfish.hk2.locator)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.log)',\ + osgi.identity;filter:='(osgi.identity=jul.to.slf4j)',\ + osgi.identity;filter:='(osgi.identity=log4j.over.slf4j)',\ + osgi.identity;filter:='(osgi.identity=specmate-common)',\ + osgi.identity;filter:='(osgi.identity=specmate-emfjson)',\ + osgi.identity;filter:='(osgi.identity=specmate-logging)',\ + osgi.identity;filter:='(osgi.identity=specmate-logging-slf4j)',\ + osgi.identity;filter:='(osgi.identity=specmate-logging-slf4j-julbridge)',\ + osgi.identity;filter:='(osgi.identity=specmate-persistency-api)',\ + osgi.identity;filter:='(osgi.identity=org.glassfish.jersey.containers.jersey-container-servlet)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.event)',\ + osgi.identity;filter:='(osgi.identity=specmate-emfrest)',\ + osgi.identity;filter:='(osgi.identity=specmate-model-gen)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.cm)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.equinox.metatype)',\ + osgi.identity;filter:='(osgi.identity=specmate-model-support)',\ + osgi.identity;filter:='(osgi.identity=specmate-ui-core)',\ + osgi.identity;filter:='(osgi.identity=specmate-config)',\ + osgi.identity;filter:='(osgi.identity=specmate-connectors)',\ + osgi.identity;filter:='(osgi.identity=specmate-testspecification)',\ + osgi.identity;filter:='(osgi.identity=specmate-hp-connector)',\ + osgi.identity;filter:='(osgi.identity=org.apache.felix.scr)',\ + osgi.identity;filter:='(&(osgi.identity=org.eclipse.jetty.osgi.boot)(version>=9.4.6))',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.jetty.osgi.httpservice)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.jetty.rewrite)',\ + osgi.identity;filter:='(osgi.identity=specmate-jettystarter)',\ + osgi.identity;filter:='(osgi.identity=org.eclipse.emf.cdo.server.ocl)',\ + osgi.identity;filter:='(osgi.identity=org.json)',\ + osgi.identity;filter:='(osgi.identity=specmate-file-connector)',\ + osgi.identity;filter:='(osgi.identity=specmate-search)',\ + osgi.identity;filter:='(osgi.identity=specmate-migration)',\ + osgi.identity;filter:='(osgi.identity=specmate-persistency-cdo)',\ + osgi.identity;filter:='(osgi.identity=specmate-administration)',\ + osgi.identity;filter:='(osgi.identity=org.apache.commons.fileupload)',\ + osgi.identity;filter:='(osgi.identity=specmate-trello-connector)',\ + osgi.identity;filter:='(osgi.identity=specmate-auth-api)',\ + osgi.identity;filter:='(osgi.identity=specmate-auth)',\ + bnd.identity;version='latest';id='specmate-jira-connector' +-runbundles: \ + javassist;version='[3.18.1,3.18.2)',\ + javax.annotation-api;version='[1.2.0,1.2.1)',\ + javax.validation.api;version='[1.1.0,1.1.1)',\ + javax.ws.rs-api;version='[2.0.1,2.0.2)',\ + jul.to.slf4j;version='[1.7.12,1.7.13)',\ + log4j.over.slf4j;version='[1.7.12,1.7.13)',\ + org.eclipse.core.contenttype;version='[3.4.200,3.4.201)',\ + org.eclipse.core.jobs;version='[3.6.1,3.6.2)',\ + org.eclipse.core.runtime;version='[3.10.0,3.10.1)',\ + org.eclipse.emf.ecore.change;version='[2.11.0,2.11.1)',\ + org.eclipse.equinox.app;version='[1.3.200,1.3.201)',\ + org.eclipse.equinox.cm;version='[1.1.0,1.1.1)',\ + org.eclipse.equinox.common;version='[3.6.200,3.6.201)',\ + org.eclipse.equinox.event;version='[1.3.100,1.3.101)',\ + org.eclipse.equinox.log;version='[1.2.300,1.2.301)',\ + org.eclipse.equinox.metatype;version='[1.4.0,1.4.1)',\ + org.eclipse.equinox.preferences;version='[3.5.200,3.5.201)',\ + org.eclipse.equinox.registry;version='[3.5.400,3.5.401)',\ + org.eclipse.osgi.services;version='[3.4.0,3.4.1)',\ + org.glassfish.hk2.api;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.external.aopalliance-repackaged;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.external.javax.inject;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.locator;version='[2.4.0,2.4.1)',\ + org.glassfish.hk2.osgi-resource-locator;version='[1.0.1,1.0.2)',\ + org.glassfish.hk2.utils;version='[2.4.0,2.4.1)',\ + org.glassfish.jersey.bundles.repackaged.jersey-guava;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.containers.jersey-container-servlet;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.containers.jersey-container-servlet-core;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.core.jersey-client;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.core.jersey-common;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.core.jersey-server;version='[2.17.0,2.17.1)',\ + org.glassfish.jersey.media.jersey-media-sse;version='[2.17.0,2.17.1)',\ + org.json;version=snapshot,\ + org.slf4j.api;version='[1.7.2,1.7.3)',\ + slf4j.api;version='[1.7.12,1.7.13)',\ + specmate-common;version=snapshot,\ + specmate-emfjson;version=snapshot,\ + specmate-emfrest;version=snapshot,\ + specmate-logging;version=snapshot,\ + specmate-logging-slf4j;version=snapshot,\ + specmate-logging-slf4j-julbridge;version=snapshot,\ + specmate-model-gen;version=snapshot,\ + specmate-persistency-api;version=snapshot,\ + specmate-persistency-cdo;version=snapshot,\ + specmate-model-support;version=snapshot,\ + specmate-ui-core;version=snapshot,\ + specmate-config;version=snapshot,\ + specmate-connectors;version=snapshot,\ + org.eclipse.emf.cdo;version='[4.5.0,4.5.1)',\ + org.eclipse.emf.cdo.common;version='[4.5.0,4.5.1)',\ + org.eclipse.emf.cdo.ecore.retrofit;version='[4.2.300,4.2.301)',\ + org.eclipse.emf.cdo.net4j;version='[4.1.400,4.1.401)',\ + org.eclipse.emf.cdo.server;version='[4.5.0,4.5.1)',\ + org.eclipse.emf.common;version='[2.12.0,2.12.1)',\ + org.eclipse.emf.ecore;version='[2.12.0,2.12.1)',\ + org.eclipse.emf.ecore.xmi;version='[2.12.0,2.12.1)',\ + org.eclipse.net4j;version='[4.5.0,4.5.1)',\ + org.eclipse.net4j.tcp;version='[4.1.400,4.1.401)',\ + org.eclipse.net4j.util;version='[3.6.0,3.6.1)',\ + com.google.guava;version='[21.0.0,21.0.1)',\ + specmate-hp-connector;version=snapshot,\ + specmate-testspecification;version=snapshot,\ + org.apache.felix.scr;version='[2.0.8,2.0.9)',\ + org.apache.commons.fileupload;version='[1.3.1,1.3.2)',\ + org.apache.commons.io;version='[2.4.0,2.4.1)',\ + org.eclipse.equinox.http.servlet;version='[1.1.500,1.1.501)',\ + org.eclipse.jetty.deploy;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.http;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.io;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.osgi-servlet-api;version='[3.1.0,3.1.1)',\ + org.eclipse.jetty.osgi.boot;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.osgi.httpservice;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.rewrite;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.security;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.server;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.servlet;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.util;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.webapp;version='[9.4.6,9.4.7)',\ + org.eclipse.jetty.xml;version='[9.4.6,9.4.7)',\ + org.eclipse.equinox.http.jetty;version='[3.0.200,3.0.201)',\ + org.eclipse.jetty.continuation;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.http;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.io;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.security;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.server;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.servlet;version='[8.1.16,8.1.17)',\ + org.eclipse.jetty.util;version='[8.1.16,8.1.17)',\ + specmate-jettystarter;version=snapshot,\ + lpg.runtime.java;version='[2.0.17,2.0.18)',\ + org.eclipse.emf.cdo.server.ocl;version='[4.2.100,4.2.101)',\ + org.eclipse.ocl;version='[3.6.200,3.6.201)',\ + org.eclipse.ocl.common;version='[1.4.200,1.4.201)',\ + org.eclipse.ocl.ecore;version='[3.6.200,3.6.201)',\ + org.sat4j.core;version='[2.3.5,2.3.6)',\ + org.jgrapht.core;version='[1.0.1,1.0.2)',\ + org.apache.commons.cli;version='[1.4.0,1.4.1)',\ + org.sat4j.maxsat;version='[2.3.5,2.3.6)',\ + org.sat4j.pb;version='[2.3.5,2.3.6)',\ + specmate-file-connector;version=snapshot,\ + org.apache.servicemix.bundles.jakarta-regexp;version='[1.4.0,1.4.1)',\ + org.apache.servicemix.bundles.lucene;version='[7.2.0,7.2.1)',\ + org.apache.servicemix.bundles.lucene-queries;version='[7.2.0,7.2.1)',\ + org.apache.servicemix.bundles.lucene-queryparser;version='[7.2.0,7.2.1)',\ + org.apache.servicemix.bundles.lucene-sandbox;version='[7.2.0,7.2.1)',\ + specmate-search;version=snapshot,\ + specmate-migration;version=snapshot,\ + specmate-administration;version=snapshot,\ + specmate-emfrest-api;version=snapshot,\ + specmate-config-api;version=snapshot,\ + specmate-trello-connector;version=snapshot,\ + specmate-auth-api;version=snapshot,\ + specmate-auth;version=snapshot,\ + com.diffplug.osgi.extension.sun.misc;version='[0.0.0,0.0.1)',\ + io.prometheus.simpleclient;version='[0.4.0,0.4.1)',\ + io.prometheus.simpleclient_common;version='[0.4.0,0.4.1)',\ + io.prometheus.simpleclient_hotspot;version='[0.4.0,0.4.1)',\ + io.prometheus.simpleclient_servlet;version='[0.4.0,0.4.1)',\ + org.eclipse.emf.cdo.server.net4j;version='[4.1.300,4.1.301)',\ + specmate-metrics;version=snapshot,\ + org.apache.commons.lang3;version='[3.3.2,3.3.3)',\ + specmate-dbprovider-api;version=snapshot,\ + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot,\ + com.sun.jersey.core;version='[1.19.0,1.19.1)',\ + com.sun.jersey.jersey-server;version='[1.19.0,1.19.1)',\ + javax.el;version='[2.2.0,2.2.1)',\ + javax.ws.rs.jsr311-api;version='[1.1.1,1.1.2)',\ + specmate-jira-connector;version=snapshot + +-runproperties: \ + jetty.http.port=8080,\ + jetty.etc.config.urls='etc/jetty.xml,etc/jetty-http.xml,etc/jetty-deployer.xml,etc/jetty-rewrite.xml',\ + osgi.console=,\ + jetty.home.bundle=specmate-jettystarter,\ + osgi.compatibility.bootdelegation=true +-runrepos: \ + Workspace,\ + Local +-runvm: -Xmx6000m \ No newline at end of file diff --git a/bundles/specmate-std-env/prod-specmate-all.bndrun b/bundles/specmate-std-env/prod-specmate-all.bndrun index 5412a98ca..06154ee49 100644 --- a/bundles/specmate-std-env/prod-specmate-all.bndrun +++ b/bundles/specmate-std-env/prod-specmate-all.bndrun @@ -171,7 +171,8 @@ specmate-cdo-server;version=snapshot,\ org.apache.commons.lang3;version='[3.3.2,3.3.3)',\ org.eclipse.emf.cdo.server.db;version='[4.4.0,4.4.1)',\ - specmate-rest;version=snapshot + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot -runproperties: \ jetty.http.port=8080,\ diff --git a/bundles/specmate-std-env/prod-specmate-cdo-server.bndrun b/bundles/specmate-std-env/prod-specmate-cdo-server.bndrun index c95bc9bc5..f32aa3961 100644 --- a/bundles/specmate-std-env/prod-specmate-cdo-server.bndrun +++ b/bundles/specmate-std-env/prod-specmate-cdo-server.bndrun @@ -19,7 +19,8 @@ osgi.identity;filter:='(osgi.identity=specmate-model-gen)',\ osgi.identity;filter:='(osgi.identity=specmate-model-support)',\ osgi.identity;filter:='(osgi.identity=specmate-dbprovider-api)',\ - osgi.identity;filter:='(osgi.identity=specmate-dbprovider-h2)' + osgi.identity;filter:='(osgi.identity=specmate-dbprovider-h2)',\ + bnd.identity;id='specmate-dummy-data' -runbundles: \ jul.to.slf4j;version='[1.7.12,1.7.13)',\ log4j.over.slf4j;version='[1.7.12,1.7.13)',\ diff --git a/bundles/specmate-std-env/prod-specmate-no-cdo-server.bndrun b/bundles/specmate-std-env/prod-specmate-no-cdo-server.bndrun index 0a3f1a69c..1a93d9f58 100644 --- a/bundles/specmate-std-env/prod-specmate-no-cdo-server.bndrun +++ b/bundles/specmate-std-env/prod-specmate-no-cdo-server.bndrun @@ -38,7 +38,8 @@ osgi.identity;filter:='(osgi.identity=org.apache.commons.fileupload)',\ osgi.identity;filter:='(osgi.identity=specmate-trello-connector)',\ osgi.identity;filter:='(osgi.identity=specmate-auth-api)',\ - osgi.identity;filter:='(osgi.identity=specmate-auth)' + osgi.identity;filter:='(osgi.identity=specmate-auth)',\ + bnd.identity;id='specmate-jira-connector' -runbundles: \ javassist;version='[3.18.1,3.18.2)',\ javax.annotation-api;version='[1.2.0,1.2.1)',\ @@ -161,7 +162,13 @@ specmate-metrics;version=snapshot,\ org.apache.commons.lang3;version='[3.3.2,3.3.3)',\ specmate-dbprovider-api;version=snapshot,\ - specmate-rest;version=snapshot + specmate-rest;version=snapshot,\ + specmate-scheduler;version=snapshot,\ + com.sun.jersey.core;version='[1.19.0,1.19.1)',\ + com.sun.jersey.jersey-server;version='[1.19.0,1.19.1)',\ + javax.el;version='[2.2.0,2.2.1)',\ + javax.ws.rs.jsr311-api;version='[1.1.1,1.1.2)',\ + specmate-jira-connector;version=snapshot -runproperties: \ jetty.http.port=8080,\ diff --git a/web/src/app/factory/element-factory-base.ts b/web/src/app/factory/element-factory-base.ts index 314909299..f8f78f139 100644 --- a/web/src/app/factory/element-factory-base.ts +++ b/web/src/app/factory/element-factory-base.ts @@ -22,7 +22,7 @@ export abstract class ElementFactoryBase { public static getDateStr(): string { const now = new Date(); const year = ElementFactoryBase.fillPreceedingZeros(now.getFullYear(), 4); - const month = ElementFactoryBase.fillPreceedingZeros(now.getMonth(), 2); + const month = ElementFactoryBase.fillPreceedingZeros(now.getMonth() + 1, 2); const day = ElementFactoryBase.fillPreceedingZeros(now.getDate(), 2); const hour = ElementFactoryBase.fillPreceedingZeros(now.getHours(), 2); const minute = ElementFactoryBase.fillPreceedingZeros(now.getMinutes(), 2); diff --git a/web/src/app/modules/forms/modules/generic-form/components/form-long-text-input.component.html b/web/src/app/modules/forms/modules/generic-form/components/form-long-text-input.component.html index 5181e17d6..4f8f34d5c 100644 --- a/web/src/app/modules/forms/modules/generic-form/components/form-long-text-input.component.html +++ b/web/src/app/modules/forms/modules/generic-form/components/form-long-text-input.component.html @@ -1,6 +1,6 @@

- +