예제 #1
0
파일: MetaK.java 프로젝트: TomGebhardt/k
 public static boolean isAnywhere(Rule r) {
   if (null == r.getAttributes()) return false;
   for (Attribute any : anywheres) {
     if (any.getValue() == r.getAttribute(any.getKey())) return true;
   }
   return false;
 }