Defs-javadoc.gmk revision 3597
0N/A#
1879N/A# Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
1472N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1472N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# or visit www.oracle.com if you need additional information or have any
0N/A# questions.
0N/A#
1879N/A
1879N/A# Copyright year for beginning of Java and some of the apis
1879N/A# (Needed when creating the javadocs)
1879N/AFIRST_COPYRIGHT_YEAR = 1993
1879N/ADOMAPI_FIRST_COPYRIGHT_YEAR = 2005
0N/AMIRROR_FIRST_COPYRIGHT_YEAR = 2004
0N/ADOCLETAPI_FIRST_COPYRIGHT_YEAR = 1993
0N/ATAGLETAPI_FIRST_COPYRIGHT_YEAR = 1993
0N/AJDI_FIRST_COPYRIGHT_YEAR = 1999
0N/AJAAS_FIRST_COPYRIGHT_YEAR = 1998
0N/AJGSS_FIRST_COPYRIGHT_YEAR = 2000
0N/ASMARTCARDIO_FIRST_COPYRIGHT_YEAR = 2005
0N/AHTTPSERVER_FIRST_COPYRIGHT_YEAR = 2005
0N/AMGMT_FIRST_COPYRIGHT_YEAR = 2003
0N/AATTACH_FIRST_COPYRIGHT_YEAR = 2005
0N/AJCONSOLE_FIRST_COPYRIGHT_YEAR = 2006
0N/ASCTPAPI_FIRST_COPYRIGHT_YEAR = 2009
0N/ATRACING_FIRST_COPYRIGHT_YEAR = 2008
0N/ATREEAPI_FIRST_COPYRIGHT_YEAR = 2005
0N/AJNLP_FIRST_COPYRIGHT_YEAR = 1998
0N/APLUGIN2_FIRST_COPYRIGHT_YEAR = 2007
0N/A
0N/A# Oracle name
0N/AFULL_COMPANY_NAME = Oracle and/or its affiliates
0N/A
0N/A# Copyright address
0N/ACOMPANY_ADDRESS = 500 Oracle Parkway<br>Redwood Shores, CA 94065 USA.
0N/A
0N/A# The trademark symbol
0N/ATRADEMARK = &trade;
0N/A
0N/A# Common copyright lines used
0N/A# The word "Copyright" might optionally be a link to the file cpyr.html.
0N/A# The first year of copyright may vary or not be available.
0N/A# The address to the company might be optional.
0N/ACOMMA:= ,
0N/AEMPTY:=
0N/ASPACE:=$(EMPTY) $(EMPTY)
0N/ACOPYRIGHT_SYMBOL = &\#x00a9;
0N/A# Macro to construct the copyright line
0N/A# (The GNU make 3.78.1 "if" conditional is broken, fixed in GNU make 3.81)
0N/Adefine CopyrightLine # optionalurl optionalfirstyear optionaladdress
0N/A$(if $(strip $1),<a href=\"$(strip $1)\">Copyright</a>,Copyright) \
0N/A$(COPYRIGHT_SYMBOL) $(if $2,$2${COMMA},) $(COPYRIGHT_YEAR),\
0N/A$(FULL_COMPANY_NAME). $3 All rights reserved.
0N/Aendef
0N/A
0N/A