1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Nomatch extends VXMLElement 67 { 68 69 73 public Nomatch() 74 { 75 super("nomatch"); 76 } 77 78 82 public Nomatch(String theMessage) 83 { 84 this(); 85 addElement(theMessage); 86 } 87 88 93 public Nomatch(String theMessage, String count) 94 { 95 this(); 96 addElement(theMessage); 97 setCount(count); 98 } 99 100 104 public Nomatch setCount(String count) 105 { 106 addAttribute("count", count); 107 return this; 108 } 109 110 } 111 | Popular Tags |