(Decl.Named decl)
| 890 | } |
| 891 | |
| 892 | public boolean isIgnored(Decl.Named decl) { |
| 893 | String s = decl.getQualifiedName().toString(); |
| 894 | for(int i=0;i!=ignores.length;++i) { |
| 895 | if(s.endsWith(ignores[i])) { |
| 896 | return true; |
| 897 | } |
| 898 | } |
| 899 | return false; |
| 900 | } |
| 901 | |
| 902 | public Context setIgnores(String... ignores) { |
| 903 | Context context = new Context(this); |
no test coverage detected