1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package net.sourceforge.pmd.lang.java.rule.unusedcode.unusedprivatemethod;
5
6 /**
7 *
8 * ClassWithPublicEnum.java
9 *
10 * Copyright 2014 Expedia, Inc. All rights reserved.
11 * EXPEDIA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
12 */
13 /**
14 * Sample class with public enum to be used by tests for "UnusedPrivateMethod".
15 *
16 * @author <a href="mailto:svenz@expedia.com">Sven Zethelius</a>
17 *
18 */
19 public class ClassWithPublicEnum {
20 public enum PublicEnum
21 {
22 VALUE1, VALUE2
23 }
24 }