Examples of ignore()


Examples of org.apache.myfaces.view.facelets.tag.MetaRulesetImpl.ignore()

            // if it's an EditableValueHolder
            if (EditableValueHolder.class.isAssignableFrom(type))
            {
                m.ignore("submittedValue");
                m.ignore("valid");
                m.addRule(EditableValueHolderRule.Instance);
            }
        }
       
        return m;
View Full Code Here

Examples of org.apache.myfaces.view.facelets.tag.MetaRulesetImpl.ignore()

    public MetaRuleset createMetaRuleset(Class type)
    {
        MetaRuleset metaRuleset = new MetaRulesetImpl(_delegate.getTag(), type);
       
        // ignore binding and disabled, because they are handled by DelegatingMetaTagHandler
        metaRuleset.ignore(JSFAttr.BINDING_ATTR).ignore(JSFAttr.DISABLED_ATTR);
        // ignore for, because it is handled by FaceletsAttachedObjectHandler
        metaRuleset.ignore(JSFAttr.FOR_ATTR);
       
        return metaRuleset;
    }
View Full Code Here

Examples of org.apache.myfaces.view.facelets.tag.MetaRulesetImpl.ignore()

        MetaRuleset metaRuleset = new MetaRulesetImpl(_delegate.getTag(), type);
       
        // ignore binding and disabled, because they are handled by DelegatingMetaTagHandler
        metaRuleset.ignore(JSFAttr.BINDING_ATTR).ignore(JSFAttr.DISABLED_ATTR);
        // ignore for, because it is handled by FaceletsAttachedObjectHandler
        metaRuleset.ignore(JSFAttr.FOR_ATTR);
       
        return metaRuleset;
    }

    @SuppressWarnings("unchecked")
View Full Code Here

Examples of org.apache.myfaces.view.facelets.tag.MetaRulesetImpl.ignore()

    @Override
    public MetaRuleset createMetaRuleset(Class type)
    {
        MetaRuleset m = new MetaRulesetImpl(_delegate.getTag(), type);
        // ignore standard component attributes
        m.ignore("binding").ignore("id");

        // add auto wiring for attributes
        m.addRule(ComponentRule.INSTANCE);

        // if it's an ActionSource
View Full Code Here

Examples of org.apache.myfaces.view.facelets.tag.MetaRulesetImpl.ignore()

            m.addRule(ValueHolderRule.INSTANCE);

            // if it's an EditableValueHolder
            if (EditableValueHolder.class.isAssignableFrom(type))
            {
                m.ignore("submittedValue");
                m.ignore("valid");
                m.addRule(EditableValueHolderRule.INSTANCE);
            }
        }
       
View Full Code Here

Examples of org.apache.myfaces.view.facelets.tag.MetaRulesetImpl.ignore()

            // if it's an EditableValueHolder
            if (EditableValueHolder.class.isAssignableFrom(type))
            {
                m.ignore("submittedValue");
                m.ignore("valid");
                m.addRule(EditableValueHolderRule.INSTANCE);
            }
        }
       
        return m;
View Full Code Here

Examples of org.apache.oozie.CoordinatorEngine.ignore()

            }
            CoordinatorActionInfo coordInfo = null;
            if(scope == null || scope.isEmpty()) {
                coordEngine.change(jobId, changeValue);
            } else{
                coordInfo = coordEngine.ignore(jobId, type, scope);
            }
            if(coordInfo != null) {
                coordActions = coordInfo.getCoordActions();
                json = new JSONObject();
                json.put(JsonTags.COORDINATOR_ACTIONS, CoordinatorActionBean.toJSONArray(coordActions, "GMT"));
View Full Code Here

Examples of org.apache.oozie.client.XOozieClient.ignore()

                    ignoreScope = commandLine.getOptionValue(ACTION_OPTION);
                    if (ignoreScope == null || ignoreScope.isEmpty()) {
                        throw new OozieCLIException("-" + ACTION_OPTION + " is empty");
                    }
                }
                printCoordActionsStatus(wc.ignore(commandLine.getOptionValue(IGNORE_OPTION), ignoreScope));
            }
            else if (options.contains(KILL_OPTION)) {
                if (commandLine.getOptionValue(KILL_OPTION).contains("-C")
                        && (options.contains(DATE_OPTION) || options.contains(ACTION_OPTION))) {
                    String coordJobId = commandLine.getOptionValue(KILL_OPTION);
View Full Code Here

Examples of org.aspectj.bridge.IMessageHandler.ignore()

      if (handler instanceof CountingMessageHandler) {
        IMessageHandler delegate = ((CountingMessageHandler) handler).delegate;
        if (swi) {
          delegate.dontIgnore(IMessage.WEAVEINFO);
        } else {
          delegate.ignore(IMessage.WEAVEINFO);
        }
      }

      boolean incrementalMode = buildConfig.isIncrementalMode() || buildConfig.isIncrementalFileMode();
View Full Code Here

Examples of org.aspectj.bridge.MessageHandler.ignore()

        int result = -1;
        final IMessageHolder holder;
        {
        MessageHandler handler = new MessageHandler();
        if (!verbose) {
          handler.ignore(IMessage.INFO);
        }
        final IMessageHandler delegate
          = verbose ? MessagePrinter.VERBOSE: MessagePrinter.TERSE;
      handler.setInterceptor(delegate);
      holder = handler;
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.