亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? build-impl.xml.svn-base

?? 使用OSGi框架開發的分布式電子辭典
?? SVN-BASE
?? 第 1 頁 / 共 3 頁
字號:
                <arg line="${application.args}"/>            </customize>        </j2seproject1:java>    </target>    <target name="-do-not-recompile">        <property name="javac.includes.binary" value=""/>    </target>    <target depends="init,-do-not-recompile,compile-single" name="run-single">        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>        <j2seproject1:java classname="${run.class}"/>    </target>    <!--                =================                DEBUGGING SECTION                =================            -->    <target depends="init" if="netbeans.home" name="-debug-start-debugger">        <j2seproject1:nbjpdastart name="${debug.class}"/>    </target>    <target depends="init,compile" name="-debug-start-debuggee">        <j2seproject3:debug>            <customize>                <arg line="${application.args}"/>            </customize>        </j2seproject3:debug>    </target>    <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>    <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>    </target>    <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>        <j2seproject3:debug classname="${debug.class}"/>    </target>    <target depends="init,-do-not-recompile,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>    <target depends="init" name="-pre-debug-fix">        <fail unless="fix.includes">Must set fix.includes</fail>        <property name="javac.includes" value="${fix.includes}.java"/>    </target>    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">        <j2seproject1:nbjpdareload/>    </target>    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>    <!--                ===============                JAVADOC SECTION                ===============            -->    <target depends="init" name="-javadoc-build">        <mkdir dir="${dist.javadoc.dir}"/>        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">            <classpath>                <path path="${javac.classpath}"/>            </classpath>            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">                <filename name="**/*.java"/>            </fileset>        </javadoc>    </target>    <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">        <nbbrowse file="${dist.javadoc.dir}/index.html"/>    </target>    <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>    <!--                =========================                JUNIT COMPILATION SECTION                =========================            -->    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">        <mkdir dir="${build.test.classes.dir}"/>    </target>    <target name="-pre-compile-test">        <!-- Empty placeholder for easier customization. -->        <!-- You can override this target in the ../build.xml file. -->    </target>    <target if="do.depend.true" name="-compile-test-depend">        <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>    </target>    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">        <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>        <copy todir="${build.test.classes.dir}">            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>        </copy>    </target>    <target name="-post-compile-test">        <!-- Empty placeholder for easier customization. -->        <!-- You can override this target in the ../build.xml file. -->    </target>    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>    <target name="-pre-compile-test-single">        <!-- Empty placeholder for easier customization. -->        <!-- You can override this target in the ../build.xml file. -->    </target>    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>        <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>        <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/>        <copy todir="${build.test.classes.dir}">            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>        </copy>    </target>    <target name="-post-compile-test-single">        <!-- Empty placeholder for easier customization. -->        <!-- You can override this target in the ../build.xml file. -->    </target>    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>    <!--                =======================                JUNIT EXECUTION SECTION                =======================            -->    <target depends="init" if="have.tests" name="-pre-test-run">        <mkdir dir="${build.test.results.dir}"/>    </target>    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">        <j2seproject3:junit testincludes="**/*Test.java"/>    </target>    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">        <fail if="tests.failed">Some tests failed; see details above.</fail>    </target>    <target depends="init" if="have.tests" name="test-report"/>    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>    <target depends="init" if="have.tests" name="-pre-test-run-single">        <mkdir dir="${build.test.results.dir}"/>    </target>    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>        <j2seproject3:junit excludes="" includes="${test.includes}"/>    </target>    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">        <fail if="tests.failed">Some tests failed; see details above.</fail>    </target>    <target depends="init,-do-not-recompile,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>    <!--                =======================                JUNIT DEBUGGING SECTION                =======================            -->    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>        <delete file="${test.report.file}"/>        <mkdir dir="${build.test.results.dir}"/>        <j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}">            <customize>                <syspropertyset>                    <propertyref prefix="test-sys-prop."/>                    <mapper from="test-sys-prop.*" to="*" type="glob"/>                </syspropertyset>                <arg value="${test.class}"/>                <arg value="showoutput=true"/>                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>            </customize>        </j2seproject3:debug>    </target>    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>    </target>    <target depends="init,-do-not-recompile,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>    </target>    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>    <!--                =========================                APPLET EXECUTION SECTION                =========================            -->    <target depends="init,compile-single" name="run-applet">        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>        <j2seproject1:java classname="sun.applet.AppletViewer">            <customize>                <arg value="${applet.url}"/>            </customize>        </j2seproject1:java>    </target>    <!--                =========================                APPLET DEBUGGING  SECTION                =========================            -->    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>        <j2seproject3:debug classname="sun.applet.AppletViewer">            <customize>                <arg value="${applet.url}"/>            </customize>        </j2seproject3:debug>    </target>    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>    <!--                ===============                CLEANUP SECTION                ===============            -->    <target depends="init" name="deps-clean" unless="no.deps"/>    <target depends="init" name="-do-clean">        <delete dir="${build.dir}"/>        <delete dir="${dist.dir}"/>    </target>    <target name="-post-clean">        <!-- Empty placeholder for easier customization. -->        <!-- You can override this target in the ../build.xml file. -->    </target>    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/></project>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品自拍网站| 一区二区久久久久久| 欧美精品久久久久久久久老牛影院| 99久久精品一区二区| 成人福利电影精品一区二区在线观看| 国产精品一区二区无线| 国内精品视频一区二区三区八戒| 久久精品国产99久久6| 激情综合网激情| 国产成人在线影院| zzijzzij亚洲日本少妇熟睡| 91丨porny丨蝌蚪视频| 欧美中文字幕不卡| 欧美一区二区在线免费观看| 精品对白一区国产伦| 久久先锋影音av| 国产精品美女视频| 亚洲精品国产高清久久伦理二区| 亚洲国产毛片aaaaa无费看| 日本三级亚洲精品| 国产一区二区三区四区五区美女| 成人av第一页| 欧美在线观看视频在线| 日韩精品专区在线影院观看 | 精品一区二区三区免费观看| 国产伦精品一区二区三区视频青涩| 4438x亚洲最大成人网| 日韩欧美亚洲另类制服综合在线| 久久久国产精华| 亚洲国产精品一区二区久久| 国产在线精品一区在线观看麻豆| 99久久99精品久久久久久 | 国产裸体歌舞团一区二区| 99久久精品国产导航| 在线播放一区二区三区| 国产视频一区在线观看| 亚洲国产毛片aaaaa无费看| 国产一区二区三区日韩| 欧美裸体一区二区三区| 日本一区二区三区高清不卡| 日韩av电影免费观看高清完整版 | 欧美久久久影院| 国产欧美日韩综合精品一区二区| 国产成人夜色高潮福利影视| 色成年激情久久综合| 精品免费一区二区三区| 亚洲美女精品一区| 国产成人亚洲综合a∨婷婷| 欧美日韩一区二区欧美激情| 亚洲人吸女人奶水| 国产成人一区二区精品非洲| 日韩久久久久久| 日韩电影在线免费| 日本大香伊一区二区三区| 国产嫩草影院久久久久| 久久成人免费网站| 在线播放91灌醉迷j高跟美女 | 亚洲午夜成aⅴ人片| 99精品欧美一区二区三区小说| 日韩女同互慰一区二区| 亚欧色一区w666天堂| 色婷婷国产精品| 国产精品福利一区二区| 国产精品正在播放| 精品国产一区二区三区忘忧草| 日本免费新一区视频| 欧美日本一道本在线视频| 一区二区三区在线观看网站| 99亚偷拍自图区亚洲| 国产精品美女一区二区三区| 成人免费精品视频| 国产精品沙发午睡系列990531| 国产一区二区美女诱惑| www成人在线观看| 精品在线视频一区| 久久久不卡影院| 国产乱一区二区| 国产精品剧情在线亚洲| 成人国产在线观看| 亚洲三级在线看| 欧美天堂一区二区三区| 亚洲第一av色| 欧美大片日本大片免费观看| 久久se精品一区二区| 国产日韩欧美精品一区| av一区二区不卡| 亚洲国产美女搞黄色| 日韩三级中文字幕| 国产传媒久久文化传媒| 国产精品视频一区二区三区不卡| 99久久久国产精品| 亚洲成a人片在线不卡一二三区| 欧美乱妇20p| 韩国成人福利片在线播放| 国产亚洲一区二区三区四区| 成人免费高清在线| 日韩一区中文字幕| 欧美亚洲动漫制服丝袜| 美国三级日本三级久久99 | 91精品中文字幕一区二区三区| 日韩精彩视频在线观看| www激情久久| 91成人免费电影| 蜜桃av一区二区在线观看| 欧美韩日一区二区三区四区| 色伊人久久综合中文字幕| 裸体健美xxxx欧美裸体表演| 中文成人综合网| 9191国产精品| 成人av资源在线观看| 日韩高清不卡在线| 中文字幕一区二区三区不卡| 欧美一级二级在线观看| 成人av小说网| 久久福利视频一区二区| 亚洲美女视频在线| 久久久久99精品一区| 欧美日韩国产综合一区二区| 成人免费三级在线| 另类人妖一区二区av| 亚洲高清久久久| 国产精品免费aⅴ片在线观看| 欧美一级艳片视频免费观看| 91在线看国产| 国产精品一级片| 日产国产欧美视频一区精品| 亚洲精品国产视频| 国产精品久久久久精k8| 久久久一区二区三区捆绑**| 欧美日本高清视频在线观看| 成人精品gif动图一区| 国产尤物一区二区在线| 蜜臀va亚洲va欧美va天堂| 一区二区三区加勒比av| 国产欧美精品一区aⅴ影院| 日韩精品一区二区在线| 欧美日韩一区二区在线视频| 91蜜桃免费观看视频| 丰满白嫩尤物一区二区| 国产成人一区二区精品非洲| 韩国三级在线一区| 久久99国产乱子伦精品免费| 日本三级亚洲精品| 蜜桃精品视频在线观看| 免费欧美日韩国产三级电影| 午夜久久久影院| 无吗不卡中文字幕| 日韩va亚洲va欧美va久久| 亚洲影院免费观看| 亚洲在线视频网站| 五月开心婷婷久久| 日日摸夜夜添夜夜添精品视频| 亚洲一区二区三区在线播放| 亚洲精品视频免费看| 亚洲综合色噜噜狠狠| 亚洲一区二区av在线| 亚洲午夜视频在线| 亚洲午夜三级在线| 免费xxxx性欧美18vr| 韩国女主播成人在线| 国产激情视频一区二区在线观看| 国内久久婷婷综合| 丰满亚洲少妇av| 色婷婷一区二区三区四区| 欧美三级日本三级少妇99| 7799精品视频| 久久久久久久久一| 国产精品三级av在线播放| 国产精品久久久久久久蜜臀| 亚洲欧美电影一区二区| 亚洲成a人片综合在线| 久久99国产精品久久| 国产福利精品一区| 91久久精品国产91性色tv| 欧美理论片在线| 精品久久国产字幕高潮| 中文字幕av资源一区| 亚洲gay无套男同| 久久国产精品第一页| 91色porny在线视频| 日韩午夜中文字幕| 中日韩av电影| 日韩av不卡一区二区| 成人av免费观看| 欧美理论片在线| 国产精品免费视频一区| 亚洲h精品动漫在线观看| 国产一区二区在线看| 色综合av在线| 久久综合九色综合97婷婷女人| 亚洲视频香蕉人妖| 另类的小说在线视频另类成人小视频在线| 成人自拍视频在线| 欧美一级片在线| 国产精品成人一区二区艾草| 免费观看91视频大全| 91热门视频在线观看| 久久先锋影音av| 日韩av网站在线观看| 在线亚洲一区观看|