本文整理汇总了Java中org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption.setValue方法的典型用法代码示例。如果您正苦于以下问题:Java TemplateOption.setValue方法的具体用法?Java TemplateOption.setValue怎么用?Java TemplateOption.setValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption
的用法示例。
在下文中一共展示了TemplateOption.setValue方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateOptions
import org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption; //导入方法依赖的package包/类
public void updateOptions(String packageName, String languageName, String fileName){
TemplateOption[] allOptions = getOptions(0);
for(TemplateOption option : allOptions){
if(option.getName().equals(KEY_PACKAGE_NAME) && packageName != null){
option.setValue(packageName);
}
else if(option.getName().equals(KEY_LANGUAGE_NAME) && languageName != null){
option.setValue(languageName);
}
else if(option.getName().equals(KEY_BASE_LANGUAGE_NAME) && languageName != null){
option.setValue(languageName+"Base");
}
else if(option.getName().equals(KEY_MELANGE_FILE_NAME) && fileName != null){
option.setValue(fileName);
}
}
}
示例2: updateOptions
import org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption; //导入方法依赖的package包/类
public void updateOptions(String packageName, String languageName, String fileName){
TemplateOption[] allOptions = getOptions(0);
for(TemplateOption option : allOptions){
if(option.getName().equals(KEY_PACKAGE_NAME) && packageName != null){
option.setValue(packageName);
}
else if(option.getName().equals(KEY_LANGUAGE_NAME) && languageName != null){
option.setValue(languageName);
}
else if(option.getName().equals(KEY_MELANGE_FILE_NAME) && fileName != null){
option.setValue(fileName);
}
}
}
示例3: updateOptions
import org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption; //导入方法依赖的package包/类
public void updateOptions(String packageName, String languageName){
TemplateOption[] allOptions = getOptions(0);
for(TemplateOption option : allOptions){
if(option.getName().equals(KEY_PACKAGE_NAME) && packageName != null){
option.setValue(packageName);
}
else if(option.getName().equals(KEY_METAMODEL_NAME) && languageName != null){
option.setValue(languageName);
}
}
}
示例4: initializeOption
import org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption; //导入方法依赖的package包/类
/**
* Initializes the option with a given unique name with the provided value.
* The value will be set only if the option has not yet been initialized.
*
* @param name
* option unique name
* @param value
* the initial value of the option
*/
protected void initializeOption(String name, Object value) {
TemplateOption option = getOption(name);
if (option != null) {
// Only initialize options that have no value set
if (option.getValue() == null)
option.setValue(value);
}
}
示例5: registerOption
import org.eclipse.gemoc.commons.eclipse.pde.wizards.pages.pde.ui.templates.TemplateOption; //导入方法依赖的package包/类
/**
* Registers the provided option and sets the initial value.
*
* @param option
* the option to register
* @param value
* the initial value
* @param pageIndex
* the page index to which this option belongs
*/
protected void registerOption(TemplateOption option, Object value, int pageIndex) {
option.setValue(value);
options.put(option.getName(), option);
}