1 58 package org.apache.ecs.wml; 59 60 import org.apache.ecs.Element; 61 import org.apache.ecs.SinglePartElement; 62 63 70 public class GoHref extends org.apache.ecs.SinglePartElement 71 { 72 76 public GoHref() { 77 setBeginEndModifier('/'); 78 setElementType("go"); 79 } 80 81 85 public GoHref(String url) 86 { 87 this(); 88 setHref(url); 89 } 90 91 95 public GoHref setHref(String url) 96 { 97 addAttribute("href", url); 98 return this; 99 } 100 } 101 | Popular Tags |