1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Param extends VXMLElement 67 { 68 69 73 public Param() 74 { 75 super("param"); 76 } 77 78 79 84 public Param(String name, String expr) 85 { 86 this(); 87 setName(name); 88 setExpr(expr); 89 } 90 91 92 96 public Param setName(String name) 97 { 98 addAttribute("name", name); 99 return this; 100 } 101 102 106 public Param setExpr(String expr) 107 { 108 addAttribute("expr", expr); 109 return this; 110 } 111 112 116 public Param setValue(String value) 117 { 118 addAttribute("value", value); 119 return this; 120 } 121 125 public Param setValuetype(String valuetype) 126 { 127 addAttribute("valuetype", valuetype); 128 return this; 129 } 130 134 public Param setType(String t) 135 { 136 addAttribute("type", t); 137 return this; 138 } 139 140 141 } 142 | Popular Tags |