org.eclipse.emf.mwe2.runtime.Mandatory Java Examples
The following examples show how to use
org.eclipse.emf.mwe2.runtime.Mandatory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CopySourceToText.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setTargetDirectory(String targetDirectory) { this.targetDirectory = targetDirectory; }
Example #2
Source File: CustomClassAwareEcoreGenerator.java From dsl-devkit with Eclipse Public License 1.0 | 4 votes |
@Override @Mandatory public void setGenModel(final String genModel) { super.setGenModel(genModel); this.genModel = genModel; }
Example #3
Source File: CompareFragment.java From dsl-devkit with Eclipse Public License 1.0 | 4 votes |
@Override @Mandatory public void setFileExtensions(final String fileExtensions) { super.setFileExtensions(fileExtensions); }
Example #4
Source File: StandardProjectConfig.java From xtext-core with Eclipse Public License 2.0 | 4 votes |
/** * The root path, usually {@code ".."}. */ @Mandatory public String setRootPath(final String rootPath) { return this.rootPath = rootPath; }
Example #5
Source File: StandardProjectConfig.java From xtext-core with Eclipse Public License 2.0 | 4 votes |
/** * The base name of the project, which is usually equal to the runtime subproject. */ @Mandatory public String setBaseName(final String baseName) { return this.baseName = baseName; }
Example #6
Source File: WebIntegrationFragment.java From xtext-core with Eclipse Public License 2.0 | 4 votes |
/** * Choose one of the supported frameworks: {@code "Orion"}, {@code "Ace"}, or {@code "CodeMirror"} */ @Mandatory public void setFramework(final String frameworkName) { this.framework.set(WebIntegrationFragment.Framework.valueOf(frameworkName.toUpperCase())); }
Example #7
Source File: AbstractExternalFolderAwareFragment.java From xtext-core with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setAbsolutePath(String absolutePath) { this.absolutePath = absolutePath; }
Example #8
Source File: NegatedUriFilter.java From xtext-core with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setUriFilter(UriFilter uriFilter) { this.uriFilter = uriFilter; }
Example #9
Source File: JFlexGeneratorFragment2.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setJFlexMain(JFlexMain main) { this.main = main; }
Example #10
Source File: CachedSetup.java From n4js with Eclipse Public License 1.0 | 4 votes |
/** * @param delegate the delegate to set */ @Mandatory public void setDelegate(ISetup delegate) { this.delegate = delegate; }
Example #11
Source File: CopySourceToText.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setSourceDirectory(String sourceDirectory) { this.sourceDirectory = sourceDirectory; }
Example #12
Source File: CopySourceToText.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void addPackage(String pack) { this.packages.add(pack); }
Example #13
Source File: CreateFileList.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setPath(String path) { this.path = path; }
Example #14
Source File: CopyDirectory.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setTargetPath(String targetPath) { this.targetPath = targetPath; }
Example #15
Source File: CopyDirectory.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setSourcePath(String sourcePath) { this.sourcePath = sourcePath; }
Example #16
Source File: CopyJavaToText.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setPath(String path) { this.path = path; }
Example #17
Source File: CreateJar.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setPackagePath(String packagePath) { this.packagePath = packagePath; }
Example #18
Source File: CreateJar.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setTargetDir(String targetDir) { this.targetDir = targetDir; }
Example #19
Source File: CreateJar.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Mandatory public void setBinPath(String binPath) { this.binPath = binPath; }
Example #20
Source File: CompareFragment.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
@Override @Mandatory public void setFileExtensions(String fileExtensions) { super.setFileExtensions(fileExtensions); }
Example #21
Source File: CompareFragment.java From dsl-devkit with Eclipse Public License 1.0 | 2 votes |
/** * Sets the view creator. * * @param viewCreator * the new view creator */ @Mandatory public void setViewCreator(final String viewCreator) { this.viewCreator = viewCreator; }
Example #22
Source File: CompareFragment.java From dsl-devkit with Eclipse Public License 1.0 | 2 votes |
/** * Sets bundle where the view creator is located. * * @param bundleName * the new bundle name */ @Mandatory public void setBundleName(final String bundleName) { this.bundleName = bundleName; }