1 18 19 package org.apache.struts.faces.systest1; 20 21 22 import javax.faces.component.UIComponent; 23 import javax.faces.context.FacesContext; 24 25 26 30 31 public class BindingBean { 32 33 34 private UIComponent write1 = null; 35 public UIComponent getWrite1() { return this.write1; } 36 public void setWrite1(UIComponent write1) { this.write1 = write1; } 37 38 39 public String getWrite1ClientId() { 40 return write1.getClientId(FacesContext.getCurrentInstance()); 41 } 42 43 44 } 45 | Popular Tags |