Examples of removeAttribute()


Examples of org.zkoss.zk.ui.WebApp.removeAttribute()

    if (aues != null) {
      for (Iterator it = aues.entrySet().iterator(); it.hasNext();) {
        final Map.Entry me = (Map.Entry)it.next();
        addAuExtension((String)me.getKey(), (AuExtension)me.getValue());
      }
      wapp.removeAttribute(ATTR_AU_PROCESSORS);
    }

    //ZK 5: extension defined in init-param has the higher priority
    for (int j = 0;;) {
      param = config.getInitParameter("extension" + j++);
View Full Code Here

Examples of org.zkoss.zk.ui.ext.Scope.removeAttribute()

  private void restoreStatus() {
    final Scope scope = getScope();
    if (_status.previous != null)
      scope.setAttribute("forEachStatus", _status.previous);
    else
      scope.removeAttribute("forEachStatus");
    if (_oldEach != null)
      scope.setAttribute("each", _oldEach);
    else
      scope.removeAttribute("each");
    _it = null; _status = null; //recycle (just in case)
View Full Code Here

Examples of pl.net.bluesoft.rnd.processtool.model.ProcessInstance.removeAttribute()

        ProcessInstance pi = task.getProcessInstance();
    for (ProcessInstanceUserAssignment assign : getAttributes(ProcessInstanceUserAssignment.class, pi)) {
      if ((roleInProcess == null && assign.getRole() == null) || (assign.getRole() != null && assign.getRole().equals(roleInProcess))) {
        found = true;
        if (selectedUser == null) {
                    pi.removeAttribute(assign);
        } else {
                    assign.setBpmLogin(selectedUser.getBpmLogin());
          assign.setUserLogin(selectedUser.getLogin());
          assign.setUserDescription(selectedUser.getDescription());
        }
View Full Code Here

Examples of tigase.xml.Element.removeAttribute()

        log.finest("DefXMLNS assigned: " + elem.toString());
      }
    }
    if (new_xmlns != null) {
      elem.setXMLNS(new_xmlns);
      elem.removeAttribute("xmlns:" + prefix);
      log.finest("new_xmlns assigned: " + elem.toString());
    }
    el_stack.push(elem);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.