| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CompilerWarnings |
|
| 2.0;2 |
| 1 | /* | |
| 2 | Copyright 2004-2008 Paul R. Holser, Jr. All rights reserved. | |
| 3 | Licensed under the Academic Free License version 3.0 | |
| 4 | */ | |
| 5 | ||
| 6 | package jaggregate.internal; | |
| 7 | ||
| 8 | /** | |
| 9 | * Constants for compiler warnings we may wish to suppress internally. | |
| 10 | * | |
| 11 | * @author <a href="mailto:pholser@alumni.rice.edu">Paul Holser</a> | |
| 12 | * @version $Id: CompilerWarnings.java,v 1.2 2008/03/30 03:07:11 pholser Exp $ | |
| 13 | */ | |
| 14 | public class CompilerWarnings { | |
| 15 | public static final String UNCHECKED = "unchecked"; | |
| 16 | ||
| 17 | /** | |
| 18 | * Discourages instantiation. | |
| 19 | * | |
| 20 | * @throws UnsupportedOperationException always | |
| 21 | */ | |
| 22 | 1 | protected CompilerWarnings() { |
| 23 | 1 | throw new UnsupportedOperationException(); |
| 24 | } | |
| 25 | } |