|
@@ -1,3 +1,13 @@
|
|
|
+/**
|
|
|
+ * Copyright (c) 2011 committers of YAKINDU and others.
|
|
|
+ * All rights reserved. This program and the accompanying materials
|
|
|
+ * are made available under the terms of the Eclipse Public License v1.0
|
|
|
+ * which accompanies this distribution, and is available at
|
|
|
+ * http://www.eclipse.org/legal/epl-v10.html
|
|
|
+ *
|
|
|
+ * Contributors:
|
|
|
+ * committers of YAKINDU - initial API and implementation
|
|
|
+ */
|
|
|
package org.yakindu.sct.generator.java.features;
|
|
|
|
|
|
import static org.yakindu.sct.generator.java.features.IJavaFeatureConstants.BASE_PACKAGE;
|
|
@@ -5,7 +15,6 @@ import static org.yakindu.sct.generator.java.features.IJavaFeatureConstants.IMPL
|
|
|
import static org.yakindu.sct.generator.java.features.IJavaFeatureConstants.LIBRARY_NAME;
|
|
|
|
|
|
import org.eclipse.core.runtime.IStatus;
|
|
|
-import org.eclipse.core.runtime.Status;
|
|
|
import org.yakindu.sct.generator.core.features.AbstractDefaultFeatureValueProvider;
|
|
|
import org.yakindu.sct.model.sgen.FeatureParameterValue;
|
|
|
import org.yakindu.sct.model.sgen.FeatureTypeLibrary;
|
|
@@ -13,7 +22,7 @@ import org.yakindu.sct.model.sgraph.Statechart;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
- * @author muelder
|
|
|
+ * @author andreas muelder - Initial contribution and API
|
|
|
*
|
|
|
*/
|
|
|
public class JavaFeatureValueProvider extends
|
|
@@ -26,7 +35,7 @@ public class JavaFeatureValueProvider extends
|
|
|
parameterValue.setValue("org.yakindu.sct." + statechart.getName());
|
|
|
} else if (parameterValue.getParameter().getName()
|
|
|
.equals(IMPLEMENTATION_SUFFIX)) {
|
|
|
- parameterValue.setValue("Impl");
|
|
|
+ parameterValue.setValue("impl");
|
|
|
}
|
|
|
}
|
|
|
|