1 package net.sourceforge.pmd.util;2 3 public interface NumericConstants {4 5 Integer ZERO = new Integer (0);6 Integer ONE = new Integer (1);7 }8