1 58 package org.apache.ecs.vxml; 59 60 65 public class Form extends VXMLElement 66 { 67 68 72 public Form() 73 { 74 super("form"); 75 } 76 77 78 83 public Form(String id, String scope) 84 { 85 this(); 86 setId(id); 87 setScope(scope); 88 } 89 90 94 public Form(String id) 95 { 96 this(); 97 setId(id); 98 } 99 100 104 public Form setId(String id) 105 { 106 addAttribute("id", id); 107 return this; 108 } 109 110 114 public Form setScope(String scope) 115 { 116 addAttribute("scope", scope); 117 return this; 118 } 119 } 120 | Popular Tags |