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

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

?? build-impl.xml

?? 使用netbeans編寫的方塊游戲TetraGame
?? 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一区二区三区免费野_久草精品视频
男女激情视频一区| 一级特黄大欧美久久久| 亚洲国产乱码最新视频 | 久久久久国产精品麻豆| 亚洲一区二区三区在线看| 国产成人精品影视| 欧美一区二区三区的| 国产精品三级电影| 精品在线免费视频| 欧美久久久久久久久| ...xxx性欧美| 国产成人综合在线播放| 欧美一区二区三区在线观看视频 | 亚洲国产精品ⅴa在线观看| 青青草成人在线观看| 在线精品视频免费观看| 国产精品视频九色porn| 黄一区二区三区| 91精品国产美女浴室洗澡无遮挡| 最好看的中文字幕久久| 懂色av中文一区二区三区| 日韩美女一区二区三区四区| 亚洲二区视频在线| 色哟哟一区二区在线观看 | 在线成人免费视频| 亚洲综合色丁香婷婷六月图片| 暴力调教一区二区三区| 国产亚洲成aⅴ人片在线观看| 久久99国产精品久久| 欧美一级欧美三级在线观看| 亚洲成人动漫在线免费观看| 91高清视频免费看| 亚洲激情综合网| 91老师国产黑色丝袜在线| 国产精品久久久久久久午夜片| 国产精品一区二区男女羞羞无遮挡| 日韩美女主播在线视频一区二区三区| 午夜精品视频在线观看| 欧美日韩国产影片| 亚洲高清不卡在线| 欧美三级资源在线| 亚洲18女电影在线观看| 欧美日韩国产高清一区二区三区| 亚洲成在人线在线播放| 欧美三级韩国三级日本三斤| 亚洲一区二区在线免费看| 欧洲视频一区二区| 亚洲国产一区二区三区青草影视| 欧美日韩免费电影| 日本亚洲免费观看| 欧美岛国在线观看| 韩国女主播成人在线| 久久婷婷色综合| 国产精品99久久久久久似苏梦涵| 国产日韩欧美高清在线| 成人在线综合网| 中文字幕一区三区| 日本精品一区二区三区高清 | 国产精品视频免费| 99久久婷婷国产| 亚洲精品国产一区二区精华液| 在线观看中文字幕不卡| 偷拍日韩校园综合在线| 日韩精品一区二区三区视频 | 秋霞影院一区二区| 精品国产一区二区三区av性色| 国产一区二区三区四区五区美女 | 欧美日本一区二区| 免费成人在线观看| 久久久99免费| 91年精品国产| 爽好多水快深点欧美视频| 欧美成人欧美edvon| 国产91色综合久久免费分享| 国产精品不卡在线| 精品视频色一区| 久久精品噜噜噜成人88aⅴ| 国产亚洲综合在线| 色94色欧美sute亚洲线路二| 午夜精品福利久久久| 26uuu国产电影一区二区| 高清不卡一区二区在线| 亚洲一区在线观看视频| 欧美v日韩v国产v| 成人avav影音| 天堂久久久久va久久久久| 久久综合九色欧美综合狠狠| 91小视频免费观看| 蜜臀精品久久久久久蜜臀 | 日韩免费观看高清完整版在线观看| 国产成人亚洲综合a∨婷婷图片| 一区二区国产视频| 久久久久亚洲综合| 91福利区一区二区三区| 精品亚洲porn| 国产精品成人免费在线| 日韩一区二区免费高清| www.色综合.com| 人人超碰91尤物精品国产| 中文字幕永久在线不卡| 日韩视频免费观看高清完整版| 成人精品电影在线观看| 麻豆精品视频在线观看免费| 亚洲欧洲国产日韩| 精品国产乱码久久久久久免费| 色综合一区二区| 国产一区二区三区四区在线观看| 亚洲大尺度视频在线观看| 国产精品污www在线观看| 欧美一区二区二区| 91色视频在线| 国产福利一区在线| 日本不卡视频在线| 亚洲女与黑人做爰| 国产日韩欧美高清在线| 日韩欧美中文字幕制服| 色成年激情久久综合| 高清不卡一二三区| 久久成人18免费观看| 亚洲高清视频中文字幕| 亚洲视频一二三| 精品美女被调教视频大全网站| 欧美在线观看视频在线| av中文字幕一区| 国产美女在线精品| 男女激情视频一区| 亚洲韩国一区二区三区| 中文字幕日韩精品一区| 久久精品欧美一区二区三区不卡 | 成人福利视频在线| 极品少妇xxxx精品少妇偷拍| 天天综合天天综合色| 亚洲影院在线观看| 亚洲视频综合在线| 国产精品婷婷午夜在线观看| 久久日一线二线三线suv| 91精品国产麻豆国产自产在线 | 97久久超碰国产精品电影| 国产麻豆视频精品| 欧美aⅴ一区二区三区视频| 亚洲成人免费电影| 亚洲黄色小说网站| 亚洲欧洲美洲综合色网| 国产欧美精品一区aⅴ影院| 2020国产精品自拍| 精品卡一卡二卡三卡四在线| 91麻豆精品国产| 欧美浪妇xxxx高跟鞋交| 精品视频一区二区三区免费| 欧美中文字幕一区| 欧美亚洲综合在线| 欧美在线一区二区三区| 色天使色偷偷av一区二区| 91理论电影在线观看| 色999日韩国产欧美一区二区| 色婷婷综合久久| 欧美中文字幕一区二区三区亚洲 | 国产在线视视频有精品| 久久不见久久见免费视频1| 免费成人深夜小野草| 老鸭窝一区二区久久精品| 精品无人码麻豆乱码1区2区| 国内精品国产三级国产a久久| 久久99久久99| 国产一区二区影院| 成人免费视频播放| www.色精品| 欧美性生交片4| 欧美日韩二区三区| 日韩精品中文字幕一区二区三区| 欧美不卡视频一区| 久久久久九九视频| 国产精品久久夜| 亚洲免费在线看| 亚洲成av人片www| 另类的小说在线视频另类成人小视频在线| 久久成人久久爱| 国产盗摄女厕一区二区三区 | 日韩精品电影一区亚洲| 日本午夜一区二区| 国产一本一道久久香蕉| a级精品国产片在线观看| 91精品91久久久中77777| 欧美日韩国产首页在线观看| 日韩一区二区不卡| 国产欧美一区视频| 亚洲激情中文1区| 日本欧美久久久久免费播放网| 精彩视频一区二区| 99精品偷自拍| 欧美军同video69gay| 久久人人超碰精品| 亚洲女性喷水在线观看一区| 日韩精品亚洲专区| 国产精华液一区二区三区| 91黄视频在线观看| 日韩一级免费观看| 国产精品乱码一区二三区小蝌蚪| 亚洲一区视频在线观看视频| 久久精品国产亚洲5555|