1 46 package org.codehaus.groovy.ast.stmt; 47 48 import org.codehaus.groovy.ast.ASTNode; 49 50 56 public class Statement extends ASTNode { 57 58 private String statementLabel; 59 60 public Statement() { 61 statementLabel = null; 62 } 63 64 public String getStatementLabel() { 65 return statementLabel; 66 } 67 68 public void setStatementLabel( String label ) { 69 statementLabel = label; 70 } 71 72 public boolean isEmpty() { 73 return false; 74 } 75 76 } 77 | Popular Tags |