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


Java CodeWriter类代码示例

本文整理汇总了Java中polyglot.util.CodeWriter的典型用法代码示例。如果您正苦于以下问题:Java CodeWriter类的具体用法?Java CodeWriter怎么用?Java CodeWriter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CodeWriter类属于polyglot.util包,在下文中一共展示了CodeWriter类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: execute

import polyglot.util.CodeWriter; //导入依赖的package包/类
public final void execute(){
	astNode.visit(this);
	// Testing testing testing
	System.out.println("\n\n\n PRETTY P{RINTING");
	if (this instanceof StmtSumWeightedByDepth) {
	  metricPrettyPrinter p = new metricPrettyPrinter(this);
	  p.printAst(astNode, new CodeWriter(System.out, 80));
	}
}
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:10,代码来源:ASTMetric.java

示例2: printAstMetric

import polyglot.util.CodeWriter; //导入依赖的package包/类
public void printAstMetric(Node n, CodeWriter w) {
  if (n instanceof Stmt) {
    if (stmtToMetric.containsKey(n)) {
      w.write(" // sum= "+stmtToMetric.get(n)+" : depth= "+stmtToMetricDepth.get(n)+"\t");
    }
  }
}
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:8,代码来源:StmtSumWeightedByDepth.java

示例3: prettyPrint

import polyglot.util.CodeWriter; //导入依赖的package包/类
/** Write the expression to an output file. */
@Override
public void prettyPrint(CodeWriter w, PrettyPrinter tr) {
    w.begin(0);
    w.write("<");
    w.write(this.securityString());
    w.write(">");
    w.allowBreak(2, " ");
    printSubExpr(expr, w, tr);
    w.end();
}
 
开发者ID:HarvardPL,项目名称:cryptoerase,代码行数:12,代码来源:CESecurityCast.java

示例4: prettyPrint

import polyglot.util.CodeWriter; //导入依赖的package包/类
@Override
public void prettyPrint(CodeWriter cw) {
    if (this.kindPol != KindPolicy.OTHER) {
        this.kindPol.prettyPrint(cw);
        cw.write("{");
        this.flowPol.prettyPrint(cw);
        cw.write("}");
    }
    else {
        this.flowPol.prettyPrint(cw);
    }
}
 
开发者ID:HarvardPL,项目名称:cryptoerase,代码行数:13,代码来源:CESecurityPolicy.java

示例5: prettyPrint

import polyglot.util.CodeWriter; //导入依赖的package包/类
@Override
public void prettyPrint(CodeWriter cw) {
    cw.write(isPublicKey ? "PUBKEY" : "PRIVKEY");
    cw.write("(");
    keyBound.prettyPrint(cw);
    cw.write(")");
}
 
开发者ID:HarvardPL,项目名称:cryptoerase,代码行数:8,代码来源:KeyKind.java

示例6: print

import polyglot.util.CodeWriter; //导入依赖的package包/类
public void print(Node parent, Node child, CodeWriter w) {
  astMetric.printAstMetric(child,w);
  super.print(parent,child,w);
}
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:5,代码来源:metricPrettyPrinter.java

示例7: prettyPrint

import polyglot.util.CodeWriter; //导入依赖的package包/类
@Override
public void prettyPrint(CodeWriter cw) {
    cw.write("Other");
}
 
开发者ID:HarvardPL,项目名称:cryptoerase,代码行数:5,代码来源:KindPolicy.java

示例8: prettyPrint

import polyglot.util.CodeWriter; //导入依赖的package包/类
@Override
public void prettyPrint(CodeWriter cw) {
    cw.write(this.toString());
}
 
开发者ID:HarvardPL,项目名称:cryptoerase,代码行数:5,代码来源:LevelPolicy.java

示例9: printAstMetric

import polyglot.util.CodeWriter; //导入依赖的package包/类
public void printAstMetric(Node n, CodeWriter w) {
  
}
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:4,代码来源:ASTMetric.java


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