View Javadoc

1   /**
2    * 
3    */
4   package com.lexicalscope.fluentreflection;
5   
6   import org.hamcrest.Description;
7   
8   final class MatcherAnyReflectedType extends ReflectionMatcher<FluentClass<?>> {
9       @Override
10      public boolean matchesSafely(final FluentClass<?> arg) {
11          return true;
12      }
13  
14      @Override
15      public void describeTo(final Description description) {
16          description.appendText("any type");
17      }
18  }