|
@@ -1,77 +1,65 @@
|
|
|
-/**
|
|
|
- * 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.core.features.impl;
|
|
|
-
|
|
|
-import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.LIBRARY_NAME;
|
|
|
-import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.LICENSE_TEXT;
|
|
|
-import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.OUTLET_FEATURE_TARGET_FOLDER;
|
|
|
-import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.OUTLET_FEATURE_TARGET_PROJECT;
|
|
|
-
|
|
|
-import org.eclipse.core.runtime.IStatus;
|
|
|
-import org.eclipse.core.runtime.Status;
|
|
|
-import org.eclipse.emf.ecore.EObject;
|
|
|
-import org.yakindu.sct.generator.core.features.AbstractDefaultFeatureValueProvider;
|
|
|
-import org.yakindu.sct.model.sgen.FeatureParameterValue;
|
|
|
-import org.yakindu.sct.model.sgen.FeatureTypeLibrary;
|
|
|
-
|
|
|
-/**
|
|
|
- *
|
|
|
- * @author holger willebrandt - Initial contribution and API
|
|
|
- */
|
|
|
-public class CoreLibraryDefaultFeatureValueProvider extends
|
|
|
- AbstractDefaultFeatureValueProvider {
|
|
|
-
|
|
|
- public boolean isProviderFor(FeatureTypeLibrary library) {
|
|
|
- return LIBRARY_NAME.equals(library.getName());
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected void setDefaultValue(FeatureParameterValue parameterValue,
|
|
|
- EObject contextElement) {
|
|
|
- String parameterName = parameterValue.getParameter().getName();
|
|
|
- if (OUTLET_FEATURE_TARGET_FOLDER.equals(parameterName)) {
|
|
|
- parameterValue.setValue("src-gen");
|
|
|
- } else if (OUTLET_FEATURE_TARGET_PROJECT.equals(parameterName)) {
|
|
|
- parameterValue.setValue(getProject(contextElement).getName());
|
|
|
- }
|
|
|
- else if (LICENSE_TEXT.equals(parameterName)) {
|
|
|
- parameterValue.setValue("Enter license text here");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public IStatus validateParameterValue(FeatureParameterValue parameterValue) {
|
|
|
- String parameterName = parameterValue.getParameter().getName();
|
|
|
- if (OUTLET_FEATURE_TARGET_PROJECT.equals(parameterName)
|
|
|
- && !projectExists(parameterValue.getStringValue()))
|
|
|
- return warning(String.format("The Project %s does not exist",
|
|
|
- parameterValue.getExpression()));
|
|
|
- if (OUTLET_FEATURE_TARGET_PROJECT.equals(parameterName)
|
|
|
- && projectExists(parameterValue.getStringValue())
|
|
|
- && !projectOpened(parameterValue.getStringValue()))
|
|
|
- return error(String.format("The Project %s is not open.",
|
|
|
- parameterValue.getExpression()));
|
|
|
- if (OUTLET_FEATURE_TARGET_FOLDER.equals(parameterName)) {
|
|
|
- FeatureParameterValue targetProjectParam = parameterValue
|
|
|
- .getFeatureConfiguration().getParameterValue(
|
|
|
- OUTLET_FEATURE_TARGET_PROJECT);
|
|
|
- String targetProjectName = targetProjectParam != null ? targetProjectParam
|
|
|
- .getStringValue() : null;
|
|
|
- if (targetProjectName != null
|
|
|
- && !folderExists(targetProjectName,
|
|
|
- parameterValue.getStringValue())) {
|
|
|
- return warning(String.format(
|
|
|
- "The Folder %s does not exist in Project %s",
|
|
|
- parameterValue.getExpression(), targetProjectName));
|
|
|
- }
|
|
|
- }
|
|
|
- return Status.OK_STATUS;
|
|
|
- }
|
|
|
-}
|
|
|
+/**
|
|
|
+ * 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.core.features.impl;
|
|
|
+
|
|
|
+import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.LIBRARY_NAME;
|
|
|
+import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.LICENSE_TEXT;
|
|
|
+import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.OUTLET_FEATURE_TARGET_FOLDER;
|
|
|
+import static org.yakindu.sct.generator.core.features.ICoreFeatureConstants.OUTLET_FEATURE_TARGET_PROJECT;
|
|
|
+
|
|
|
+import org.eclipse.core.runtime.IStatus;
|
|
|
+import org.eclipse.core.runtime.Status;
|
|
|
+import org.eclipse.emf.ecore.EObject;
|
|
|
+import org.yakindu.sct.generator.core.features.AbstractDefaultFeatureValueProvider;
|
|
|
+import org.yakindu.sct.model.sgen.FeatureParameterValue;
|
|
|
+import org.yakindu.sct.model.sgen.FeatureTypeLibrary;
|
|
|
+
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * @author holger willebrandt - Initial contribution and API
|
|
|
+ */
|
|
|
+public class CoreLibraryDefaultFeatureValueProvider extends AbstractDefaultFeatureValueProvider {
|
|
|
+
|
|
|
+ public boolean isProviderFor(FeatureTypeLibrary library) {
|
|
|
+ return LIBRARY_NAME.equals(library.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void setDefaultValue(FeatureParameterValue parameterValue, EObject contextElement) {
|
|
|
+ String parameterName = parameterValue.getParameter().getName();
|
|
|
+ if (OUTLET_FEATURE_TARGET_FOLDER.equals(parameterName)) {
|
|
|
+ parameterValue.setValue("src-gen");
|
|
|
+ } else if (OUTLET_FEATURE_TARGET_PROJECT.equals(parameterName)) {
|
|
|
+ parameterValue.setValue(getProject(contextElement).getName());
|
|
|
+ } else if (LICENSE_TEXT.equals(parameterName)) {
|
|
|
+ parameterValue.setValue("Enter license text here");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public IStatus validateParameterValue(FeatureParameterValue parameterValue) {
|
|
|
+ String parameterName = parameterValue.getParameter().getName();
|
|
|
+ if (OUTLET_FEATURE_TARGET_PROJECT.equals(parameterName) && !projectExists(parameterValue.getStringValue()))
|
|
|
+ return error(String.format("The Project %s does not exist.", parameterValue.getExpression()));
|
|
|
+ if (OUTLET_FEATURE_TARGET_PROJECT.equals(parameterName) && projectExists(parameterValue.getStringValue())
|
|
|
+ && !projectOpened(parameterValue.getStringValue()))
|
|
|
+ return error(String.format("The Project %s is not open.", parameterValue.getExpression()));
|
|
|
+ if (OUTLET_FEATURE_TARGET_FOLDER.equals(parameterName)) {
|
|
|
+ FeatureParameterValue targetProjectParam = parameterValue.getFeatureConfiguration()
|
|
|
+ .getParameterValue(OUTLET_FEATURE_TARGET_PROJECT);
|
|
|
+ String targetProjectName = targetProjectParam != null ? targetProjectParam.getStringValue() : null;
|
|
|
+ if (targetProjectName != null && !folderExists(targetProjectName, parameterValue.getStringValue())) {
|
|
|
+ return warning(String.format("The Folder %s does not exist in Project %s",
|
|
|
+ parameterValue.getExpression(), targetProjectName));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return Status.OK_STATUS;
|
|
|
+ }
|
|
|
+}
|