1 15 package org.apache.tapestry.parse; 16 17 import org.apache.hivemind.Location; 18 import org.apache.hivemind.util.ToStringBuilder; 19 20 27 28 public class CloseToken extends TemplateToken 29 { 30 private String _tag; 31 32 public CloseToken(String tag, Location location) 33 { 34 super(TokenType.CLOSE, location); 35 36 _tag = tag; 37 } 38 39 public String getTag() 40 { 41 return _tag; 42 } 43 44 protected void extendDescription(ToStringBuilder builder) 45 { 46 builder.append("tag", _tag); 47 } 48 49 } 50 | Popular Tags |