コード例 #1
0
 /**
  * @see railo.runtime.type.Objects#setEL(railo.runtime.PageContext, java.lang.String,
  *     java.lang.Object)
  */
 public Object setEL(PageContext pc, String propertyName, Object value) {
   return component.setEL(propertyName, value);
 }
コード例 #2
0
 /**
  * @see railo.runtime.type.Objects#setEL(railo.runtime.PageContext,
  *     railo.runtime.type.Collection.Key, java.lang.Object)
  */
 public Object setEL(PageContext pc, Collection.Key propertyName, Object value) {
   return component.setEL(propertyName, value);
 }
コード例 #3
0
 /**
  * @see railo.runtime.type.Collection#setEL(railo.runtime.type.Collection.Key, java.lang.Object)
  */
 public Object setEL(Collection.Key key, Object value) {
   return component.setEL(key, value);
 }