1 16 package org.apache.cocoon.faces.taglib; 17 18 import org.apache.cocoon.taglib.TagSupport; 19 20 23 public class FacetTag extends TagSupport { 24 25 private String name; 26 27 public String getName() { 28 return this.name; 29 } 30 31 public void setName(String name) { 32 this.name = name; 33 } 34 35 public void recycle() { 36 super.recycle(); 37 this.name = null; 38 } 39 } 40 | Popular Tags |