CustomTagUsage.java revision 3233:b5d08bc0d224
1264377Sdes/*
2261287Sdes * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3261287Sdes * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4261287Sdes *
5261287Sdes * This code is free software; you can redistribute it and/or modify it
6261287Sdes * under the terms of the GNU General Public License version 2 only, as
7261287Sdes * published by the Free Software Foundation.
8261287Sdes *
9261287Sdes * This code is distributed in the hope that it will be useful, but WITHOUT
10261287Sdes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11261287Sdes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12261287Sdes * version 2 for more details (a copy is included in the LICENSE file that
13261287Sdes * accompanied this code).
14261287Sdes *
15261287Sdes * You should have received a copy of the GNU General Public License version
16261287Sdes * 2 along with this work; if not, write to the Free Software Foundation,
17261287Sdes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18261287Sdes *
19261287Sdes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20261287Sdes * or visit www.oracle.com if you need additional information or have any
21261287Sdes * questions.
22261287Sdes */
23261287Sdes
24264377Sdespackage pkg1;
25261287Sdes
26261287Sdespublic class CustomTagUsage {
27261287Sdes
28261287Sdes    /**
29261287Sdes     * @todo the value of this constant is {@value}.
30261287Sdes     */
31261287Sdes    public static final int CONSTANT_INT = 55;
32261287Sdes
33261287Sdes    /**
34261287Sdes     * @todo the value of this constant is {@value}.
35261287Sdes     */
36261287Sdes    public int nonConstant = 55;
37261287Sdes
38261287Sdes    /**
39261287Sdes     * Here is a bad value reference: {@value UnknownClass#unknownConstant}.
40261287Sdes     */
41261287Sdes    public int badReference = 55;
42261287Sdes
43261287Sdes}
44261287Sdes