Package net.innig.macker.event

Examples of net.innig.macker.event.AccessRuleViolation


     * Handler speichert die geworfenen und relevanten Events in einer Map@Override
     */
    @Override
    public void handleMackerEvent(RuleSet ruleSet, MackerEvent event) {
     if (event instanceof AccessRuleViolation) {
       AccessRuleViolation e = (AccessRuleViolation) event;
      
       if (violation.get(e.getFrom().toString()) == null) {
         violation.put(e.getFrom().toString(), new ArrayList<AccessRuleViolation>());
       }
       violation.get(e.getFrom().toString()).add(e);
     }
   }
View Full Code Here

TOP

Related Classes of net.innig.macker.event.AccessRuleViolation

Copyright © 2018 www.massapicom. 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.