示例#1
0
文件: DCol.java 项目: vjetteam/vjet
 @Override
 public DCol add(final EventType eventType, final String jsText) {
   super.add(eventType, jsText);
   return this;
 }
示例#2
0
文件: DCol.java 项目: vjetteam/vjet
 @Override
 public DCol add(final EventType eventType, final IJsFunc func) {
   super.add(eventType, func);
   return this;
 }
示例#3
0
文件: DCol.java 项目: vjetteam/vjet
 /**
  * Shorthand for add(new DText(value)) <br>
  * <code>
  * ex: node.add("Address")
  * </code>
  *
  * @param value to be added as a DText node. Throws DOMException if value is null.
  * @return this
  * @throws DOMException
  */
 @Override
 public DCol add(final String value) throws DOMException {
   super.add(value);
   return this;
 }
示例#4
0
文件: DCol.java 项目: vjetteam/vjet
 //
 // Framework - Event Wiring
 //
 @Override
 public DCol add(final EventType eventType, final ISimpleJsEventHandler handler) {
   super.add(eventType, handler);
   return this;
 }
示例#5
0
文件: DCol.java 项目: vjetteam/vjet
 /**
  * Shorthand of appendChild(Node) but takes a DNode arg.
  * Returns "this" DNode vs. the added child - this is nice for
  * cascade style programming.
  * <code>
  * node.add(anotherNode).addRaw("&nbsp;") ;
  * vs.
  * node.add(anotherNode);
  * node.addRaw("&nbsp;");
  * @param newChild node to be appended.  Throws DOMException if value is null.
  * @return this
  * @throws DOMException
  */
 @Override
 public DCol add(final DNode newChild) throws DOMException {
   super.add(newChild);
   return this;
 }