本文整理汇总了Java中jetbrains.mps.openapi.intentions.IntentionExecutable类的典型用法代码示例。如果您正苦于以下问题:Java IntentionExecutable类的具体用法?Java IntentionExecutable怎么用?Java IntentionExecutable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IntentionExecutable类属于jetbrains.mps.openapi.intentions包,在下文中一共展示了IntentionExecutable类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
List<IntentionExecutable> list = ListSequence.fromList(new ArrayList<IntentionExecutable>());
List<Tuples._2<String, File>> paramList = parameter(node, context);
if (paramList != null) {
for (Tuples._2<String, File> param : paramList) {
ListSequence.fromList(list).addElement(new SetFont_Intention.IntentionImplementation(param));
}
}
return list;
}
示例2: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new KopieerNaamNaarKorteNaamRechtsbetrekking_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例3: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new DatumMigreren_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例4: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new VerwijderenDatumTijdstipUitvoeren_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例5: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new MaakKenmerkEnkelvoudig_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例6: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new MaakKenmerkOptioneel_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例7: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new MigreerRechtsgevolgen_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例8: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new KopieerNaamNaarKorteNaamRechtsgevolgveroorzaker_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:KopieerNaamNaarKorteNaamRechtsgevolgveroorzaker_Intention.java
示例9: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new Hernummer_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例10: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new KrachtigeAanspraakFataleVerplichtig_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例11: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new InitialiseerDatums_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例12: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new MaakKenmerkVerplicht_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例13: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new VrijheidGeenaanspraak_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例14: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new ImmuniteitGeenbevoegdheid_Intention.IntentionImplementation());
}
return myCachedExecutable;
}
示例15: instances
import jetbrains.mps.openapi.intentions.IntentionExecutable; //导入依赖的package包/类
public Collection<IntentionExecutable> instances(final SNode node, final EditorContext context) {
if (myCachedExecutable == null) {
myCachedExecutable = Collections.<IntentionExecutable>singletonList(new AanspraakNaIngebrekeStellingPlicht_Intention.IntentionImplementation());
}
return myCachedExecutable;
}