1 28 package net.sf.jasperreports.engine; 29 30 31 35 public interface JRExpressionChunk 36 { 37 38 39 42 public static final byte TYPE_TEXT = 1; 43 public static final byte TYPE_PARAMETER = 2; 44 public static final byte TYPE_FIELD = 3; 45 public static final byte TYPE_VARIABLE = 4; 46 public static final byte TYPE_RESOURCE = 5; 47 48 49 52 public byte getType(); 53 54 57 public String getText(); 58 59 60 } 61 | Popular Tags |