1 52 53 package freemarker.examples.jsp; 54 55 public class SimpleBean 56 { 57 private static String [] arr = { "a","b","c","d"}; 58 59 private String theString = "Hello from " + toString(); 60 61 public void setString( String foo ) 62 { 63 theString = foo; 64 } 65 66 public String getString() 67 { 68 return theString; 69 } 70 71 public String [] getArray() 72 { 73 return arr; 74 } 75 } 76 | Popular Tags |