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

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

?? build-impl.xml

?? 用JAVA實現修道士過河
?? XML
?? 第 1 頁 / 共 2 頁
字號:
    <!--
    ====================
    JAR BUILDING SECTION
    ====================
    -->
    <target name="-pre-pre-jar" depends="init">
        <dirname property="dist.jar.dir" file="${dist.jar}"/>
        <mkdir dir="${dist.jar.dir}"/>
    </target>
    <target name="-pre-jar">
        <!-- Empty placeholder for easier customization. -->
        <!-- You can override this target in the ../build.xml file. -->
    </target>
    <target name="-do-jar-without-manifest" depends="init,compile,-pre-pre-jar,-pre-jar" unless="manifest.available">
        <j2seproject1:jar/>
    </target>
    <target name="-do-jar-with-manifest" depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" unless="manifest.available+main.class">
        <j2seproject1:jar manifest="${manifest.file}"/>
    </target>
    <target name="-do-jar-with-mainclass" depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class" unless="manifest.available+main.class+mkdist.available">
        <j2seproject1:jar manifest="${manifest.file}">
            <j2seproject1:manifest>
                <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
            </j2seproject1:manifest>
        </j2seproject1:jar>
        <echo>To run this application from the command line without Ant, try:</echo>
        <property name="build.classes.dir.resolved" location="${build.classes.dir}"/>
        <property name="dist.jar.resolved" location="${dist.jar}"/>
        <pathconvert property="run.classpath.with.dist.jar">
            <path path="${run.classpath}"/>
            <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
        </pathconvert>
        <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
    </target>
    <target name="-do-jar-with-libraries" depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available">
        <property name="build.classes.dir.resolved" location="${build.classes.dir}"/>
        <pathconvert property="run.classpath.without.build.classes.dir">
            <path path="${run.classpath}"/>
            <map from="${build.classes.dir.resolved}" to=""/>
        </pathconvert>
        <pathconvert property="jar.classpath" pathsep=" ">
            <path path="${run.classpath.without.build.classes.dir}"/>
            <chainedmapper>
                <flattenmapper/>
                <globmapper from="*" to="lib/*"/>
            </chainedmapper>
        </pathconvert>
        <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" name="copylibs" classpath="${libs.CopyLibs.classpath}"/>
        <copylibs manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}" jarfile="${dist.jar}" compress="${jar.compress}">
            <fileset dir="${build.classes.dir}"/>
            <manifest>
                <attribute name="Main-Class" value="${main.class}"/>
                <attribute name="Class-Path" value="${jar.classpath}"/>
            </manifest>
        </copylibs>
        <echo>To run this application from the command line without Ant, try:</echo>
        <property name="dist.jar.resolved" location="${dist.jar}"/>
        <echo>java -jar "${dist.jar.resolved}"</echo>
    </target>
    <target name="-post-jar">
        <!-- Empty placeholder for easier customization. -->
        <!-- You can override this target in the ../build.xml file. -->
    </target>
    <target name="jar" depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR."/>
    <!--
    =================
    EXECUTION SECTION
    =================
    -->
    <target name="run" depends="init,compile" description="Run a main class.">
        <j2seproject1:java>
            <customize>
                <arg line="${application.args}"/>
            </customize>
        </j2seproject1:java>
    </target>
    <target name="run-single" depends="init,compile-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 name="-debug-start-debugger" if="netbeans.home" depends="init">
        <j2seproject1:nbjpdastart name="${debug.class}"/>
    </target>
    <target name="-debug-start-debuggee" depends="init,compile">
        <j2seproject3:debug>
            <customize>
                <arg line="${application.args}"/>
            </customize>
        </j2seproject3:debug>
    </target>
    <target name="debug" if="netbeans.home" depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE."/>
    <target name="-debug-start-debugger-stepinto" if="netbeans.home" depends="init">
        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
    </target>
    <target name="debug-stepinto" if="netbeans.home" depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee"/>
    <target name="-debug-start-debuggee-single" if="netbeans.home" depends="init,compile-single">
        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
        <j2seproject3:debug classname="${debug.class}"/>
    </target>
    <target name="debug-single" if="netbeans.home" depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single"/>
    <target name="-pre-debug-fix" depends="init">
        <fail unless="fix.includes">Must set fix.includes</fail>
        <property name="javac.includes" value="${fix.includes}.java"/>
    </target>
    <target name="-do-debug-fix" if="netbeans.home" depends="init,-pre-debug-fix,compile-single">
        <j2seproject1:nbjpdareload/>
    </target>
    <target name="debug-fix" if="netbeans.home" depends="init,-pre-debug-fix,-do-debug-fix"/>
    <!--
    ===============
    JAVADOC SECTION
    ===============
    -->
    <target name="-javadoc-build" depends="init">
        <mkdir dir="${dist.javadoc.dir}"/>
        <javadoc destdir="${dist.javadoc.dir}" source="${javac.source}" notree="${javadoc.notree}" use="${javadoc.use}" nonavbar="${javadoc.nonavbar}" noindex="${javadoc.noindex}" splitindex="${javadoc.splitindex}" author="${javadoc.author}" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}" private="${javadoc.private}" additionalparam="${javadoc.additionalparam}" failonerror="true" useexternalfile="true">
            <classpath>
                <path path="${javac.classpath}"/>
            </classpath>
            <sourcepath>
                <pathelement location="${src.dir}"/>
            </sourcepath>
            <packageset dir="${src.dir}" includes="*/**"/>
            <fileset dir="${src.dir}" includes="*.java"/>
        </javadoc>
    </target>
    <target name="-javadoc-browse" if="netbeans.home" unless="no.javadoc.preview" depends="init,-javadoc-build">
        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
    </target>
    <target name="javadoc" depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc."/>
    <!--
    =========================
    JUNIT COMPILATION SECTION
    =========================
    -->
    <target name="-pre-pre-compile-test" if="have.tests" depends="init,compile">
        <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 name="-do-compile-test" if="have.tests" depends="init,compile,-pre-pre-compile-test,-pre-compile-test">
        <j2seproject3:javac srcdir="${test.src.dir}" destdir="${build.test.classes.dir}" debug="true" classpath="${javac.test.classpath}"/>
        <copy todir="${build.test.classes.dir}">
            <fileset dir="${test.src.dir}" excludes="**/*.java"/>
        </copy>
    </target>
    <target name="-post-compile-test">
        <!-- Empty placeholder for easier customization. -->
        <!-- You can override this target in the ../build.xml file. -->
    </target>
    <target name="compile-test" depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-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 name="-do-compile-test-single" if="have.tests" depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single">
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
        <j2seproject3:javac srcdir="${test.src.dir}" destdir="${build.test.classes.dir}" debug="true" classpath="${javac.test.classpath}">
            <customize>
                <patternset includes="${javac.includes}"/>
            </customize>
        </j2seproject3:javac>
        <copy todir="${build.test.classes.dir}">
            <fileset dir="${test.src.dir}" excludes="**/*.java"/>
        </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 name="compile-test-single" depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single"/>
    <!--
    =======================
    JUNIT EXECUTION SECTION
    =======================
    -->
    <target name="-pre-test-run" if="have.tests" depends="init">
        <mkdir dir="${build.test.results.dir}"/>
    </target>
    <target name="-do-test-run" if="have.tests" depends="init,compile-test,-pre-test-run">
        <j2seproject3:junit/>
    </target>
    <target name="-post-test-run" if="have.tests" depends="init,compile-test,-pre-test-run,-do-test-run">
        <fail if="tests.failed">Some tests failed; see details above.</fail>
    </target>
    <target name="test-report" if="have.tests" depends="init"/>
    <target name="-test-browse" if="netbeans.home+have.tests" depends="init"/>
    <target name="test" depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests."/>
    <target name="-pre-test-run-single" if="have.tests" depends="init">
        <mkdir dir="${build.test.results.dir}"/>
    </target>
    <target name="-do-test-run-single" if="have.tests" depends="init,compile-test-single,-pre-test-run-single">
        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
        <j2seproject3:junit includes="${test.includes}"/>
    </target>
    <target name="-post-test-run-single" if="have.tests" depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single">
        <fail if="tests.failed">Some tests failed; see details above.</fail>
    </target>
    <target name="test-single" depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test."/>
    <!--
    =======================
    JUNIT DEBUGGING SECTION
    =======================
    -->
    <target name="-debug-start-debuggee-test" if="have.tests" depends="init,compile-test">
        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
        <j2seproject3:debug classname="junit.textui.TestRunner" classpath="${debug.test.classpath}">
            <customize>
                <arg line="${test.class}"/>
            </customize>
        </j2seproject3:debug>
    </target>
    <target name="-debug-start-debugger-test" if="netbeans.home+have.tests" depends="init,compile-test">
        <j2seproject1:nbjpdastart name="${test.class}" classpath="${debug.test.classpath}"/>
    </target>
    <target name="debug-test" depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test"/>
    <target name="-do-debug-fix-test" if="netbeans.home" depends="init,-pre-debug-fix,compile-test-single">
        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
    </target>
    <target name="debug-fix-test" if="netbeans.home" depends="init,-pre-debug-fix,-do-debug-fix-test"/>
    <!--
    =========================
    APPLET EXECUTION SECTION
    =========================
    -->
    <target name="run-applet" depends="init,compile-single">
        <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 name="-debug-start-debuggee-applet" if="netbeans.home" depends="init,compile-single">
        <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 name="debug-applet" if="netbeans.home" depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet"/>
    <!--
    ===============
    CLEANUP SECTION
    ===============
    -->
    <target name="deps-clean" depends="init" unless="no.deps"/>
    <target name="-do-clean" depends="init">
        <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 name="clean" depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products."/>
</project>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区三区av| 欧美三级电影在线观看| 91色porny蝌蚪| 制服丝袜亚洲色图| 中文字幕在线观看不卡| 日本在线不卡视频| 色综合久久中文综合久久97| 精品国产电影一区二区| 亚洲一级电影视频| 99久久精品国产一区二区三区| 日韩欧美一区二区视频| 亚洲资源在线观看| 91片黄在线观看| 国产精品乱人伦| 成人午夜免费电影| 国产婷婷一区二区| 狠狠狠色丁香婷婷综合激情 | 99r国产精品| 精品99一区二区三区| 奇米一区二区三区| 欧美日本一区二区在线观看| 一区二区三区成人在线视频 | 久久精品噜噜噜成人av农村| 欧洲av在线精品| 尤物av一区二区| 91麻豆文化传媒在线观看| 欧美极品aⅴ影院| 国产成人8x视频一区二区| 精品国产伦一区二区三区免费| 日韩精品视频网站| 91精品福利在线一区二区三区| 亚洲综合激情另类小说区| 色噜噜狠狠成人中文综合| 亚洲乱码中文字幕| 色丁香久综合在线久综合在线观看| 中文字幕一区二区三区乱码在线| 国产**成人网毛片九色| 中文字幕一区二区三中文字幕| 国产成人免费在线| 一区在线观看视频| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 五月综合激情婷婷六月色窝| 在线不卡欧美精品一区二区三区| 午夜亚洲国产au精品一区二区| 欧美一区在线视频| 国产一区二区久久| 中文av一区特黄| 91黄色在线观看| 午夜久久久久久久久久一区二区| 欧美顶级少妇做爰| 国产在线看一区| 亚洲欧美在线视频观看| 欧美在线小视频| 蜜臀av一区二区在线免费观看| 亚洲精品在线观看视频| 不卡视频在线看| 亚洲制服欧美中文字幕中文字幕| 8x8x8国产精品| 国产精品88av| 亚洲国产精品久久人人爱蜜臀| 欧美一级免费大片| 丁香桃色午夜亚洲一区二区三区| 一区二区在线免费观看| 日韩一区二区在线看片| 成人h精品动漫一区二区三区| 一区二区三区精品视频| 26uuu精品一区二区| 91免费国产在线| 麻豆成人免费电影| 亚洲欧美日韩国产成人精品影院| 91精品国产麻豆| 成人网页在线观看| 日本 国产 欧美色综合| 国产精品福利一区二区| 欧美一区二区视频网站| av在线不卡电影| 蜜桃视频一区二区三区在线观看| 国产精品不卡在线观看| 日韩欧美国产一区二区在线播放| 99麻豆久久久国产精品免费优播| 奇米影视在线99精品| 一区二区三区免费在线观看| 精品国产乱码久久| 欧美日韩成人在线一区| 99久精品国产| 国产精品一区二区三区四区| 石原莉奈在线亚洲三区| 亚洲日本韩国一区| 国产欧美日本一区二区三区| 欧美久久久久免费| 色88888久久久久久影院野外| 国产精品996| 国产一区在线视频| 蜜臀av一区二区在线观看| 亚洲一区视频在线| 亚洲三级在线看| 中文字幕av一区二区三区高 | 欧美丰满一区二区免费视频| 成人国产视频在线观看| 久久国产精品99精品国产| 日本aⅴ亚洲精品中文乱码| 亚洲第一会所有码转帖| 亚洲精品国产成人久久av盗摄 | 欧美va天堂va视频va在线| 欧美日韩国产综合久久| 欧美丝袜自拍制服另类| 色婷婷av一区二区三区gif| 99久久精品免费看国产| 高清国产一区二区三区| 国产成人三级在线观看| 国产一级精品在线| 国产美女娇喘av呻吟久久| 国产最新精品精品你懂的| 激情综合色综合久久| 久久国产生活片100| 久久精品国产77777蜜臀| 激情图区综合网| 国产在线精品一区二区三区不卡| 蜜臀99久久精品久久久久久软件| 青青草精品视频| 韩国女主播成人在线| 国产成人综合精品三级| 成人一道本在线| 91美女视频网站| 欧美艳星brazzers| 欧美一级免费观看| 国产喂奶挤奶一区二区三区| 国产丝袜欧美中文另类| 亚洲欧洲国产日韩| 夜夜精品视频一区二区 | 日韩一区二区在线免费观看| 精品少妇一区二区三区视频免付费 | 中文字幕乱码久久午夜不卡| 中文字幕免费不卡在线| 亚洲欧美日韩久久精品| 午夜av一区二区| 国产一区二区视频在线| 成人免费观看av| 欧美丝袜自拍制服另类| 精品欧美乱码久久久久久| 国产亚洲视频系列| 亚洲男帅同性gay1069| 亚洲成人自拍网| 国产一区二区三区在线观看精品| 风间由美性色一区二区三区| 在线视频国内一区二区| 日韩久久久久久| 亚洲欧洲韩国日本视频| 蜜臀av性久久久久蜜臀aⅴ | 亚洲欧美日韩一区二区| 蜜桃久久av一区| www.66久久| 91精品国产综合久久精品麻豆| 国产日韩精品视频一区| 亚洲国产综合在线| 国产91富婆露脸刺激对白| 欧美久久久久中文字幕| 中文字幕av资源一区| 日韩电影网1区2区| 91麻豆福利精品推荐| 欧美成人官网二区| 亚洲精品乱码久久久久久黑人| 极品尤物av久久免费看| 欧美三级日韩三级| 国产精品三级av在线播放| 欧美a级理论片| 色悠悠久久综合| www久久久久| 天堂成人免费av电影一区| 成人福利电影精品一区二区在线观看| 欧美日韩国产一二三| 最新国产成人在线观看| 国内精品在线播放| 欧美美女bb生活片| 一区二区三区不卡视频在线观看| 国产精一区二区三区| 日韩一区二区三区视频| 亚洲大片在线观看| 色美美综合视频| 国产精品国产三级国产专播品爱网| 麻豆精品在线看| 9191成人精品久久| 亚洲午夜精品在线| 色国产综合视频| 成人免费在线播放视频| 风间由美性色一区二区三区| 精品国产91洋老外米糕| 蜜臀精品一区二区三区在线观看 | 不卡电影免费在线播放一区| 久久亚洲二区三区| 美女久久久精品| 日韩亚洲欧美中文三级| 视频在线观看91| 69精品人人人人| 日产国产欧美视频一区精品| 欧美精品三级在线观看| 五月婷婷综合网| 3d动漫精品啪啪一区二区竹菊 | 亚洲一区二区免费视频| 色系网站成人免费|