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

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

?? build-impl.xml

?? windows的蜘蛛紙牌游戲源代碼
?? 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在线观| 国产精品美女一区二区| 欧美aⅴ一区二区三区视频| 欧美一级一区二区| 国产在线视频不卡二| 国产欧美一区二区三区鸳鸯浴| 国产精品一区在线观看你懂的| 中文字幕精品—区二区四季| 暴力调教一区二区三区| 亚洲综合清纯丝袜自拍| 欧美日韩一区二区在线观看视频 | 亚洲裸体在线观看| 91久久免费观看| 亚洲一本大道在线| 日韩欧美国产综合| 成人国产精品免费观看| 一区二区三区高清| 欧美一区二区在线播放| 久久se这里有精品| 综合电影一区二区三区| 欧美一区二区在线免费观看| 国产大片一区二区| 亚洲国产成人av好男人在线观看| 777午夜精品视频在线播放| 成人一道本在线| 亚洲免费在线观看| 欧美一区二区三区免费视频| 东方欧美亚洲色图在线| 亚洲一区二区在线免费观看视频 | 伊人色综合久久天天| 91精品国产综合久久福利软件| 国产精一品亚洲二区在线视频| 亚洲婷婷在线视频| 欧美不卡在线视频| 日本大香伊一区二区三区| 狠狠色狠狠色综合日日91app| 亚洲同性同志一二三专区| 欧美一级二级在线观看| 色综合色综合色综合色综合色综合| 日本系列欧美系列| 亚洲欧美在线视频| www成人在线观看| 欧美中文字幕一区二区三区亚洲| 国产精品一区不卡| 午夜精品福利一区二区蜜股av| 国产精品无码永久免费888| 777午夜精品免费视频| 91在线视频观看| 国产在线看一区| 日本视频在线一区| 一个色在线综合| 国产精品国产三级国产普通话蜜臀| 日韩一区二区在线播放| 91成人在线精品| aaa国产一区| 高清国产午夜精品久久久久久| 日本亚洲欧美天堂免费| 亚洲一区二区在线观看视频| 一区在线中文字幕| 国产午夜精品久久久久久久 | 在线观看免费视频综合| 成人激情文学综合网| 国产一区二区三区在线观看免费 | 欧美伊人久久大香线蕉综合69 | 美国毛片一区二区| 亚洲第一福利一区| 亚洲综合成人在线视频| 国产精品理论在线观看| 日本一区二区三区免费乱视频| 欧美tickling网站挠脚心| 色婷婷av一区二区三区gif| 99视频一区二区| 成人国产一区二区三区精品| 国产精品一区一区三区| 国产一区二区三区在线观看免费视频 | 青青青伊人色综合久久| 午夜精品久久久久| 婷婷久久综合九色综合伊人色| 一区二区三区免费观看| 亚洲精品一二三| 亚洲综合在线五月| 亚洲在线视频免费观看| 亚洲大型综合色站| 日韩在线一二三区| 麻豆中文一区二区| 狠狠v欧美v日韩v亚洲ⅴ| 国产精品影视网| 欧美日韩国产影片| 欧美欧美午夜aⅴ在线观看| 欧美性色欧美a在线播放| 欧美日韩一区中文字幕| 日韩午夜av电影| 久久老女人爱爱| 国产精品毛片大码女人| 亚洲老妇xxxxxx| 天堂资源在线中文精品| 美女脱光内衣内裤视频久久网站| 蜜臀av一区二区在线免费观看| 国产剧情在线观看一区二区| 成人高清免费观看| 欧美在线不卡视频| 日韩免费性生活视频播放| 久久久一区二区三区| 成人欧美一区二区三区小说| 亚洲国产cao| 精品一区二区三区免费视频| 国产999精品久久| 99re66热这里只有精品3直播 | 欧美色手机在线观看| 欧美一区二区三区视频在线 | 国产精品久久久久久久久免费相片| 日韩美女视频一区二区 | 伊人开心综合网| 另类人妖一区二区av| 不卡的电影网站| 91精品国产欧美一区二区| 国产午夜精品一区二区三区四区| 一区二区三区资源| 欧美a一区二区| 一本色道a无线码一区v| 日韩欧美一区二区在线视频| 国产精品网曝门| 日本特黄久久久高潮| 成人久久久精品乱码一区二区三区| 欧美色综合网站| 日本一区二区动态图| 欧美aaa在线| 一本大道久久a久久综合| 日韩欧美专区在线| 一区二区三区高清| 成人免费毛片aaaaa**| 91精品国产综合久久精品麻豆| 中文字幕亚洲区| 激情久久久久久久久久久久久久久久| 91色.com| 国产区在线观看成人精品| 天堂一区二区在线免费观看| 91丨九色丨尤物| 久久午夜老司机| 美女在线视频一区| 91国在线观看| 中文字幕不卡在线观看| 久久99精品国产.久久久久 | 亚洲成人精品在线观看| 成人精品国产免费网站| 精品伦理精品一区| 日韩av网站在线观看| 在线亚洲一区观看| 国产精品精品国产色婷婷| 精品一区二区三区日韩| 欧美理论电影在线| 亚洲线精品一区二区三区| 成人理论电影网| 日本一区二区三区在线不卡| 日韩avvvv在线播放| 91福利在线导航| 国产精品二区一区二区aⅴ污介绍| 国产乱子伦视频一区二区三区| 7777精品伊人久久久大香线蕉超级流畅 | **网站欧美大片在线观看| 国产不卡免费视频| 国产无一区二区| 国产精品一区二区久久不卡| 精品福利二区三区| 看片网站欧美日韩| 欧美一级淫片007| 久久精品国产免费| 日韩欧美黄色影院| 精品制服美女丁香| 精品美女在线观看| 久久99国产精品成人| 欧美精品一区二区三区一线天视频 | 精品国产乱码久久| 精品一区二区国语对白| 精品国产三级a在线观看| 玖玖九九国产精品| 久久影音资源网| 国产一区日韩二区欧美三区| 久久久久久麻豆| 成人午夜视频在线| 综合久久综合久久| 欧洲av在线精品| 婷婷久久综合九色国产成人 | 国产原创一区二区| 国产精品人人做人人爽人人添| www.欧美精品一二区| 亚洲欧美日韩中文播放| 在线欧美日韩国产| 日韩中文字幕91| 久久久激情视频| 成人福利电影精品一区二区在线观看| 国产精品人成在线观看免费 | 亚洲欧洲精品成人久久奇米网| 色偷偷久久一区二区三区| 偷拍一区二区三区| 精品sm在线观看| 成人美女视频在线看| 亚洲国产成人av网| 久久九九久久九九| 91香蕉视频污在线|