本文整理匯總了Java中org.eclipse.gemoc.gexpressions.provider.GexpressionsEditPlugin類的典型用法代碼示例。如果您正苦於以下問題:Java GexpressionsEditPlugin類的具體用法?Java GexpressionsEditPlugin怎麽用?Java GexpressionsEditPlugin使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
GexpressionsEditPlugin類屬於org.eclipse.gemoc.gexpressions.provider包,在下文中一共展示了GexpressionsEditPlugin類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getLabel
import org.eclipse.gemoc.gexpressions.provider.GexpressionsEditPlugin; //導入依賴的package包/類
/**
* Returns the label for the specified type name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected String getLabel(String typeName) {
try {
return GexpressionsEditPlugin.INSTANCE.getString("_UI_" + typeName + "_type");
}
catch(MissingResourceException mre) {
GexpressionsEditorPlugin.INSTANCE.log(mre);
}
return typeName;
}
示例2: BFlowEditPlugin
import org.eclipse.gemoc.gexpressions.provider.GexpressionsEditPlugin; //導入依賴的package包/類
/**
* Create the instance.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public BFlowEditPlugin() {
super
(new ResourceLocator [] {
BcoolEditPlugin.INSTANCE,
EcoreEditPlugin.INSTANCE,
GexpressionsEditPlugin.INSTANCE,
});
}