modules/configuration-annotation-processor/src/integrationTest/java/org/apache/ignite/internal/configuration/processor/HasFieldMatcher.java [65:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return new BaseMatcher<ParsedClass>() {
            /** Currently used matcher. */
            int currentMatcher = 0;

            /** {@inheritDoc} */
            @Override
            public void describeTo(Description description) {
                matcherList.get(currentMatcher).describeTo(description);
            }

            /** {@inheritDoc} */
            @Override
            public void describeMismatch(Object item, Description description) {
                matcherList.get(currentMatcher).describeMismatch(item, description);
            }

            /** {@inheritDoc} */
            @Override
            public boolean matches(Object o) {
                for (int i = 0; i < matcherList.size(); i++) {
                    currentMatcher = i;
                    if (!matcherList.get(i).matches(o)) {
                        return false;
                    }
                }

                return true;
            }
        };
    }

    /** {@inheritDoc} */
    @Override
    public boolean matches(Object o) {
        if (!(o instanceof ParsedClass)) {
            return false;
        }

        ParsedClass cls = (ParsedClass) o;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/configuration-annotation-processor/src/integrationTest/java/org/apache/ignite/internal/configuration/processor/HasMethodMatcher.java [60:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return new BaseMatcher<ParsedClass>() {
            /** Currently used matcher. */
            int currentMatcher = 0;

            /** {@inheritDoc} */
            @Override
            public void describeTo(Description description) {
                matcherList.get(currentMatcher).describeTo(description);
            }

            /** {@inheritDoc} */
            @Override
            public void describeMismatch(Object item, Description description) {
                matcherList.get(currentMatcher).describeMismatch(item, description);
            }

            /** {@inheritDoc} */
            @Override
            public boolean matches(Object o) {
                for (int i = 0; i < matcherList.size(); i++) {
                    currentMatcher = i;
                    if (!matcherList.get(i).matches(o)) {
                        return false;
                    }
                }

                return true;
            }
        };
    }

    /** {@inheritDoc} */
    @Override
    public boolean matches(Object o) {
        if (!(o instanceof ParsedClass)) {
            return false;
        }

        ParsedClass cls = (ParsedClass) o;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



