1 package org.columba.mail.spam.rules; 19 20 21 25 public abstract class AbstractRule implements Rule { 26 27 31 public static float NEARLY_ZERO= 0.5f; 32 33 37 public static float MAX_PROBABILITY= 0.9f; 38 39 private String name; 40 41 public AbstractRule(String name) { 42 this.name = name; 43 } 44 47 public String getName() { 48 return name; 49 } 50 } 51 | Popular Tags |