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

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

?? build-impl.xml

?? javaSE以控制臺操作
?? 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一区二区三区免费野_久草精品视频
激情综合色播激情啊| 国产亚洲va综合人人澡精品| 精品少妇一区二区三区视频免付费| 一区二区三区四区视频精品免费| 大白屁股一区二区视频| 久久久九九九九| 国产精品18久久久久久久久 | 成人av资源下载| 欧美精品一区二区在线观看| 久久国产麻豆精品| 欧美最新大片在线看| 亚洲激情五月婷婷| 欧美福利视频导航| 日韩电影免费一区| 欧美成人福利视频| 国产精选一区二区三区| 久久久国产精品麻豆| 国产美女娇喘av呻吟久久| 久久久精品免费网站| 国产盗摄视频一区二区三区| 国产午夜三级一区二区三| 国产麻豆日韩欧美久久| 成人免费在线视频| 国产91高潮流白浆在线麻豆| 综合激情成人伊人| 色综合欧美在线视频区| 日韩制服丝袜av| 精品国产一区二区三区不卡| 国产成人精品一区二区三区四区 | 国产精品视频一二三区| 94色蜜桃网一区二区三区| 亚洲妇熟xx妇色黄| 久久色.com| 91精品1区2区| 蜜桃视频在线一区| 国产精品美女久久久久久2018 | 男女激情视频一区| 久久久久久久久久美女| 在线免费不卡电影| 久久99最新地址| 亚洲免费大片在线观看| 制服丝袜av成人在线看| 国产91综合一区在线观看| 亚洲一区国产视频| 国产亚洲综合在线| 色视频成人在线观看免| 麻豆视频观看网址久久| 亚洲黄色小视频| 久久精品亚洲一区二区三区浴池| 色国产综合视频| 国内成人自拍视频| 亚洲一卡二卡三卡四卡| 日本一区二区免费在线| 69av一区二区三区| 97精品视频在线观看自产线路二| 亚洲色图另类专区| 国产欧美日韩视频在线观看| 欧美日韩国产小视频| 成人av第一页| 精品在线你懂的| 亚洲视频电影在线| 国产欧美日韩三级| 久久综合九色综合97婷婷| 欧美在线一区二区| 国产精品亚洲一区二区三区妖精| 亚洲美女免费视频| 国产三级欧美三级| 欧美成人性福生活免费看| 91在线视频18| 成人黄色大片在线观看| 国产乱码精品1区2区3区| 日韩二区三区四区| 亚洲五码中文字幕| 尤物在线观看一区| 亚洲一区二区三区中文字幕在线| 国产亚洲欧美激情| 欧美变态tickle挠乳网站| 欧美日产国产精品| 欧美日韩一级大片网址| 91网站最新地址| 激情综合色综合久久综合| 日韩成人一级片| 五月天婷婷综合| 亚洲成va人在线观看| 亚洲永久免费视频| 亚洲美女视频在线| 亚洲桃色在线一区| 亚洲天堂精品在线观看| 国产精品美女久久久久久久| 欧美经典一区二区三区| 日本一区二区视频在线观看| 日本一区二区三区国色天香| 国产亚洲一区二区三区在线观看| 欧美videos中文字幕| 日韩精品最新网址| 宅男在线国产精品| 欧美一区二区三区视频| 91麻豆精品国产91久久久资源速度 | 国产清纯美女被跳蛋高潮一区二区久久w | 日本aⅴ亚洲精品中文乱码| 亚洲欧洲美洲综合色网| 国产精品久久久久7777按摩| 国产精品成人一区二区三区夜夜夜| 国产亚洲短视频| 国产精品免费人成网站| 一区二区三区在线视频观看58 | 欧美一级xxx| 欧美人牲a欧美精品| 欧美性大战久久| 91精品婷婷国产综合久久竹菊| 91精品国产色综合久久ai换脸| 欧美一级免费观看| 久久综合九色综合欧美亚洲| 国产精品乱码久久久久久| 自拍偷拍欧美精品| 香蕉久久一区二区不卡无毒影院| 日韩—二三区免费观看av| 国产老妇另类xxxxx| 精品国产乱码久久久久久浪潮 | 亚洲国产精华液网站w| 亚洲精品少妇30p| 激情久久久久久久久久久久久久久久| 成人免费视频视频在线观看免费 | 精品美女一区二区| 亚洲精品综合在线| 国产主播一区二区| 欧美一a一片一级一片| 欧美激情综合五月色丁香| 五月婷婷另类国产| 99久久99久久精品免费观看| 日韩视频在线你懂得| 一区二区三区资源| 国产 日韩 欧美大片| 91精品国产入口| 亚洲一区二区三区在线看| 成人免费的视频| 精品成人佐山爱一区二区| 午夜亚洲福利老司机| 99视频在线观看一区三区| 精品久久久久久久久久久院品网| 亚洲一区欧美一区| 92国产精品观看| 国产精品网站导航| 国产精一区二区三区| 欧美mv日韩mv国产网站app| 成人激情小说乱人伦| 日韩欧美亚洲另类制服综合在线| 亚洲影视资源网| 色哟哟国产精品| 国产精品电影院| eeuss国产一区二区三区| 久久免费视频色| 久久99久久精品| 日韩女同互慰一区二区| 青草av.久久免费一区| 欧美一区日韩一区| 日韩在线卡一卡二| 欧美午夜一区二区| 亚洲一本大道在线| 欧美亚洲国产怡红院影院| 樱桃国产成人精品视频| 色播五月激情综合网| 亚洲精品一卡二卡| 在线看一区二区| 亚洲成人免费视频| 欧美日韩国产a| 日本视频免费一区| 91精品国产色综合久久不卡蜜臀 | 色视频欧美一区二区三区| 亚洲日本欧美天堂| 一本一道综合狠狠老| 亚洲三级小视频| 欧美专区亚洲专区| 午夜国产精品一区| 欧美一区二区在线视频| 另类调教123区 | 日韩欧美一卡二卡| 捆绑调教一区二区三区| 精品av久久707| 波多野结衣中文字幕一区二区三区 | 国产米奇在线777精品观看| 久久久亚洲午夜电影| 成人福利在线看| 亚洲欧美区自拍先锋| 精品视频色一区| 美女国产一区二区| 国产区在线观看成人精品| 92国产精品观看| 天天综合色天天综合色h| 日韩欧美久久久| 成人成人成人在线视频| 亚洲国产日韩一区二区| 日韩欧美成人一区| 不卡的av网站| 视频一区二区中文字幕| 国产亚洲精品中文字幕| 在线视频你懂得一区二区三区| 丝袜美腿亚洲综合| 国产日产精品一区| 欧美影视一区在线|