Package net.sf.tapestry

Examples of net.sf.tapestry.IBinding


public class ArrayViewer extends BaseComponent {
  /**
   * Return the bound heading if there is one, else return a static default heading
   */
  public String getHeading() {
    IBinding binding = (IBinding)getBinding("heading");
    if(binding.getObject() != null) {
      return binding.getObject().toString();
    }
    return heading;
  }
View Full Code Here

TOP

Related Classes of net.sf.tapestry.IBinding

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.