当前位置: 首页>>代码示例>>Java>>正文


Java IntentionExecutable类代码示例

本文整理汇总了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;
}
 
开发者ID:CampagneLaboratory,项目名称:Editor2PDF,代码行数:11,代码来源:SetFont_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:KopieerNaamNaarKorteNaamRechtsbetrekking_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:DatumMigreren_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:VerwijderenDatumTijdstipUitvoeren_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:MaakKenmerkEnkelvoudig_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:MaakKenmerkOptioneel_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:MigreerRechtsgevolgen_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:Hernummer_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:KrachtigeAanspraakFataleVerplichtig_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:InitialiseerDatums_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:MaakKenmerkVerplicht_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:VrijheidGeenaanspraak_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:ImmuniteitGeenbevoegdheid_Intention.java

示例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;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:7,代码来源:AanspraakNaIngebrekeStellingPlicht_Intention.java


注:本文中的jetbrains.mps.openapi.intentions.IntentionExecutable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。