Examples of resetValues()


Examples of com.liferay.portal.security.permission.PermissionChecker.resetValues()

            return true;
          }

          @Override
          public void resetValues() {
            oldChecker.resetValues();
          }

          @Override
          public void setCheckGuest(boolean checkGuest) {
            oldChecker.setCheckGuest(true);
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

                }
                writer.writePreamble("<?xml version='1.0' encoding='" + encoding + "'?>\n");
                writer.startDocument();
               
                if (isResetValues()) {
                    viewRoot.resetValues(ctx, myRenderIds);
                }
               
                if (isRenderAll()) {
                    renderAll(ctx, viewRoot);
                    renderState(ctx);
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

            {
                list.add(getComponentId(faces, contextComponent, id));
            }
           
            // Call resetValues
            root.resetValues(faces, list);
        }
    }
   
    private final static class LiteralResetValuesActionListener implements ActionListener, Serializable
    {
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

            for (String id : clientIds)
            {
                list.add(getComponentId(faces, contextComponent, id));
            }
           
            root.resetValues(faces, list);
        }
    }
   
    private static final String getComponentId(FacesContext facesContext,
        UIComponent contextComponent, String id)
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

                }
                writer.writePreamble("<?xml version='1.0' encoding='" + encoding + "'?>\n");
                writer.startDocument();
               
                if (isResetValues()) {
                    viewRoot.resetValues(ctx, myRenderIds);
                }
               
                if (isRenderAll()) {
                    renderAll(ctx, viewRoot);
                    renderState(ctx);
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

//                }
//                writer.writePreamble("<?xml version='1.0' encoding='" + encoding + "'?>\n");
                writer.startDocument();
               
                if (isResetValues()) {
                    viewRoot.resetValues(ctx, myRenderIds);
                }
               
                if (isRenderAll()) {
                    renderAll(ctx, viewRoot);
                    renderState(ctx);
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

                }
                writer.writePreamble("<?xml version='1.0' encoding='" + encoding + "'?>\n");
                writer.startDocument();
               
                if (isResetValues()) {
                    viewRoot.resetValues(ctx, myRenderIds);
                }
               
                if (isRenderAll()) {
                    renderAll(ctx, viewRoot);
                    renderState(ctx);
View Full Code Here

Examples of javax.faces.component.UIViewRoot.resetValues()

        public void processAction(ActionEvent event)
              throws AbortProcessingException {
            FacesContext context = FacesContext.getCurrentInstance();
            UIViewRoot root = context.getViewRoot();
            root.resetValues(context, render);
        }
    }

    /**
     * @param config
View Full Code Here

Examples of org.conventionsframework.qualifier.BeanState.resetValues()

            return;
        } else {//only a state annotation is present
            BeanState beanState = AnnotationUtils.findStateAnnotation(getClass());
            if (beanState != null) {
                if (beanState.beanState().equals(this.getBeanState().getStateName())) {
                    statePushEvent.fire(new StatePushEvent(new StateItem(beanState.outcome(), getEntity(), getBeanState(), beanState.value(), beanState.title(), this.getClass(), beanState.ajax(), beanState.callback(), beanState.update(),beanState.global(),beanState.resetValues(),beanState.immediate(),beanState.oncomplete(),beanState.addEntityIdParam())));
                }
            }
        }
    }
View Full Code Here

Examples of org.conventionsframework.qualifier.BeanState.resetValues()

            } else {//only a state annotation is present
                BeanState state = AnnotationUtils.findStateAnnotation(getClass());
                if (states != null) {
                    if (state.beanState().equals(this.getBeanState().getStateName())) {
                        statePushEvent.fire(new StatePushEvent(new StateItem(state.outcome(), getEntity(), getBeanState(), state.value(), state.title(), this.getClass(), state.ajax(), state.callback(), state.update(),state.global(),state.resetValues(),state.immediate(),state.oncomplete(),state.addEntityIdParam())));
                    }
                }
            }
        }
    }
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.