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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? 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>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆91在线看| 六月婷婷色综合| 亚洲视频小说图片| 亚洲女与黑人做爰| 一区二区三区欧美日韩| 亚洲蜜臀av乱码久久精品| 亚洲视频小说图片| 婷婷久久综合九色国产成人| 免费成人小视频| 国产精品一二二区| 91一区二区在线| 91丝袜呻吟高潮美腿白嫩在线观看| 成人动漫精品一区二区| 欧美放荡的少妇| 久久免费电影网| 亚洲一区二区三区四区中文字幕| 青青草视频一区| 成人h精品动漫一区二区三区| 99久久精品费精品国产一区二区| 在线视频中文字幕一区二区| 精品少妇一区二区三区在线播放 | 国产精品网曝门| 亚洲成人一区在线| 国产风韵犹存在线视精品| 在线观看欧美黄色| 精品国产免费久久| 亚洲va国产va欧美va观看| 大桥未久av一区二区三区中文| 欧美精品少妇一区二区三区| 三级不卡在线观看| av高清不卡在线| 久久久99久久| 国产麻豆精品theporn| 91精品中文字幕一区二区三区| 最新久久zyz资源站| 国产综合色精品一区二区三区| 这里只有精品免费| 亚洲福利一二三区| 欧美在线|欧美| 亚洲第一福利一区| 在线不卡免费欧美| 五月天激情小说综合| 欧美性生交片4| 午夜精品在线视频一区| 欧美日韩一级二级| 日韩精品成人一区二区在线| 91精品国产乱| 国产suv精品一区二区6| 欧美韩国一区二区| av高清久久久| 亚洲18色成人| 久久久精品国产99久久精品芒果| 色婷婷亚洲综合| 亚洲444eee在线观看| 欧美成人video| 91色九色蝌蚪| 麻豆成人久久精品二区三区红| 国产女人18水真多18精品一级做| 91麻豆.com| 精品综合免费视频观看| 日韩一区欧美一区| 欧美日韩精品一区二区| 国产精品一区二区视频| 亚洲情趣在线观看| 久久色视频免费观看| 91小宝寻花一区二区三区| 欧美a级一区二区| 综合av第一页| 国产精品盗摄一区二区三区| 666欧美在线视频| 色综合久久久久久久久| 丁香网亚洲国际| 另类综合日韩欧美亚洲| 樱桃国产成人精品视频| 久久久精品国产99久久精品芒果| 成人免费一区二区三区视频| 日韩一级片网址| 美女在线观看视频一区二区| 亚洲精品一区二区三区在线观看 | 欧美三级一区二区| 中文字幕亚洲成人| 欧美一区二区三区免费| av电影一区二区| 成人听书哪个软件好| 久久99精品久久久久久| 久久精品国产澳门| 午夜精品免费在线观看| 亚洲一区二区视频在线| 一区二区视频在线看| 中文一区在线播放| 日韩欧美国产一区二区三区 | 欧美国产乱子伦| 久久久久久久一区| 欧美精品一区二区蜜臀亚洲| www国产精品av| 国产精品三级av| 一区二区三区四区不卡视频 | 欧美在线色视频| 欧美一区二区网站| 久久久久久久电影| 亚洲六月丁香色婷婷综合久久 | 日本女人一区二区三区| 欧美国产综合色视频| 国产精品电影一区二区| 一区二区三区加勒比av| 亚洲成精国产精品女| 国产成人午夜99999| 一本色道久久综合亚洲精品按摩| 91精品国产色综合久久ai换脸 | 亚洲资源在线观看| 国产一区在线观看视频| 色悠悠亚洲一区二区| 欧美成人精品二区三区99精品| 最新国产精品久久精品| 麻豆精品久久精品色综合| 色综合中文字幕国产 | av中文字幕不卡| 欧美大片拔萝卜| 婷婷激情综合网| 欧美伊人久久大香线蕉综合69| 中文字幕欧美日韩一区| 奇米精品一区二区三区在线观看一 | 亚洲综合久久av| 国产成人丝袜美腿| 制服丝袜成人动漫| 一区二区三区在线观看网站| 国产成人亚洲精品狼色在线| 精品久久五月天| 美女一区二区久久| 欧美精品第1页| 日韩成人免费看| 欧美一区二视频| 午夜精品国产更新| 4hu四虎永久在线影院成人| 亚洲午夜一区二区| 欧美亚洲国产一区二区三区va | 日本道精品一区二区三区| 亚洲天堂中文字幕| 91亚洲国产成人精品一区二三| 亚洲乱码精品一二三四区日韩在线| 99热99精品| 丝袜国产日韩另类美女| 欧美一区二区三区视频免费播放| 亚洲18色成人| 中文字幕免费不卡| 91久久国产综合久久| 天天影视网天天综合色在线播放| 7777精品伊人久久久大香线蕉完整版 | 蜜臀久久99精品久久久久宅男| 日韩三级高清在线| 免费的国产精品| 亚洲乱码国产乱码精品精98午夜 | 国产一区二区三区久久悠悠色av| 日本一区二区三级电影在线观看| 91在线观看成人| 秋霞影院一区二区| 国产精品二三区| 日韩一区二区免费高清| av男人天堂一区| 久久国产视频网| 天天操天天综合网| 国产精品国产自产拍高清av| 欧美大黄免费观看| 欧美精品欧美精品系列| 91黄视频在线| 成人精品小蝌蚪| 国产成+人+日韩+欧美+亚洲| 日韩精品一二三| 亚洲国产日韩a在线播放性色| 欧美激情综合五月色丁香 | 免费观看久久久4p| 亚洲国产精品一区二区久久恐怖片| 国产欧美一区视频| 欧美精品一区二区在线观看| 欧美一区二区三区视频在线 | 日本在线不卡视频一二三区| 亚洲国产精品影院| 亚洲电影你懂得| 午夜精品一区二区三区免费视频 | 91精品国产高清一区二区三区 | 国产91在线|亚洲| 成人精品视频网站| 91视频国产观看| 欧美高清视频在线高清观看mv色露露十八| 99精品黄色片免费大全| 日本韩国一区二区三区视频| 在线国产电影不卡| 日韩亚洲欧美一区二区三区| 日韩午夜电影在线观看| 精品奇米国产一区二区三区| 中文欧美字幕免费| 夜夜嗨av一区二区三区中文字幕| 香蕉成人伊视频在线观看| 麻豆成人av在线| 欧美亚洲国产bt| 久久精品无码一区二区三区| 一区二区三区精品视频| 精品中文字幕一区二区小辣椒| 不卡的av电影在线观看| 在线观看av一区二区|