1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
--- a/compile.xml
+++ a/compile.xml
@@ -4,8 +4,11 @@
<!-- properties -->
<property name="javac.compiler" value="modern"/>
<property name="javac.target" value="1.1"/>
+ <property name="javac.source" value="1.1"/>
<property name="src.dir" value="."/>
<property name="dest.dir" value="."/>
+ <property name="src.encoding" value="Shift_JIS"/>
+ <property name="compile.nowarn" value="false"/>
<!-- targets -->
<target name="compileDebug">
@@ -14,6 +17,7 @@
</delete>
<javac compiler="${javac.compiler}"
target="${javac.target}"
+ source="${javac.source}"
srcdir="${src.dir}"
destdir="${dest.dir}"
deprecation="on"
@@ -23,6 +27,7 @@
</javac>
<javac compiler="${javac.compiler}"
target="${javac.target}"
+ source="${javac.source}"
srcdir="${src.dir}"
destdir="${dest.dir}"
deprecation="off"
@@ -38,20 +43,26 @@
</delete>
<javac compiler="${javac.compiler}"
target="${javac.target}"
+ source="${javac.source}"
srcdir="${src.dir}"
destdir="${dest.dir}"
deprecation="on"
debug="off"
- optimize="on">
+ optimize="on"
+ encoding="${src.encoding}"
+ nowarn="${compile.nowarn}">
<patternset includesfile="${basedir}/lists/srcfiles.deprecation.list" />
</javac>
<javac compiler="${javac.compiler}"
target="${javac.target}"
+ source="${javac.source}"
srcdir="${src.dir}"
destdir="${dest.dir}"
deprecation="off"
debug="off"
- optimize="on">
+ optimize="on"
+ encoding="${src.encoding}"
+ nowarn="${compile.nowarn}">
<patternset includesfile="${basedir}/lists/srcfiles.nodeprecation.list" />
</javac>
</target>
--- a/javadoc.xml
+++ a/javadoc.xml
@@ -5,6 +5,9 @@
<property name="src.dir" value="."/>
<property name="dest.dir" value="./docs"/>
<property name="link.url" value="http://java.sun.com/j2se/1.4/ja/docs/ja/api/"/>
+ <property name="link.offline" value="false"/>
+ <property name="packagelist.loc" value="" />
+ <property name="src.encoding" value="Shift_JIS" />
<!-- targets -->
<target name="javadoc">
@@ -24,15 +27,18 @@
jp.gr.java_conf.dangan.lang.reflect,
jp.gr.java_conf.dangan.util,
jp.gr.java_conf.dangan.util.lha"
- doctitle="LHA Library for Java API hLg"
- Windowtitle="LHA Library for Java">
- <link href="${link.url}" />
+ doctitle="LHA Library for Java API Document"
+ Windowtitle="LHA Library for Java"
+ classpath="${classpath}"
+ encoding="${src.encoding}" charset="Shift_JIS">
+ <link href="${link.url}" offline="${link.offline}"
+ packagelistLoc="${packagelist.loc}" />
<Header>
<![CDATA[<small>LHA Library for Java</small>]]>
</Header>
<bottom>
- <![CDATA[<small>oOhLǧ̕<A href="mailto:cqw10305@nifyt.com">҈</A>ɂ肢܂B<br></small>]]>
- <![CDATA[<small>hLgɊ܂܂ЖAiɂĂ͈ʂɊeЂ̏W܂͓o^WłB<br></small>]]>
+ <![CDATA[<small>When you found typographical errors or omissions, Please mail to <A href="mailto:cqw10305@nifyt.com">cqw10305@nifty.com</A><br></small>]]>
+ <![CDATA[<small>The company name and product name which are used in this document, it is the trademark or registered trademark of each company generally.<br></small>]]>
<![CDATA[<small>Copyright © 2001-2002 Michel Ishizuka. All Rights Reserved.<br></small>]]>
</bottom>
</javadoc>
|