1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Meta extends VXMLElement 67 { 68 69 73 public Meta() 74 { 75 super("meta"); 76 } 77 78 82 public Meta setAuthor(String author) 83 { 84 addAttribute("author", author); 85 return this; 86 } 87 88 92 public Meta setCopyright(String copyright) 93 { 94 addAttribute("copyright", copyright); 95 return this; 96 } 97 98 102 public Meta setDescription(String description) 103 { 104 addAttribute("description", description); 105 return this; 106 } 107 108 112 public Meta setKeywords(String keywords) 113 { 114 addAttribute("keywords", keywords); 115 return this; 116 } 117 118 122 public Meta setMaintainer(String maintainer) 123 { 124 addAttribute("maintainer", maintainer); 125 return this; 126 } 127 128 132 public Meta setRobots(String robots) 133 { 134 addAttribute("robots", robots); 135 return this; 136 } 137 138 139 } 140 | Popular Tags |