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

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

?? build-impl.xml

?? java 網(wǎng)絡(luò)編程的東西
?? 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一区二区三区免费野_久草精品视频
www欧美成人18+| 自拍偷拍亚洲激情| 色伊人久久综合中文字幕| 日韩激情视频在线观看| 国产精品青草综合久久久久99| 欧美日韩一区 二区 三区 久久精品| 国内不卡的二区三区中文字幕| 亚洲精品日韩一| 久久精品亚洲精品国产欧美| 欧美日韩精品福利| 99精品在线免费| 国产精品一区二区你懂的| 视频在线在亚洲| 亚洲国产一区二区三区青草影视| 亚洲国产成人自拍| 欧美一级精品在线| 欧美日韩国产成人在线91| 97精品久久久久中文字幕| 久草热8精品视频在线观看| 亚洲自拍欧美精品| 日韩毛片一二三区| 中文字幕av一区二区三区| 精品久久久久久综合日本欧美| 亚洲美女精品一区| 久久综合久久鬼色| 精品欧美一区二区久久 | 国产精品伊人色| 夜夜夜精品看看| 亚洲人一二三区| 17c精品麻豆一区二区免费| 国产欧美日韩卡一| 久久久久久毛片| 久久美女高清视频| 精品国产一区二区三区不卡| 欧美一区二区三区四区高清| 欧美日本国产一区| 欧美日韩电影在线| 欧美人妇做爰xxxⅹ性高电影| 欧美视频一区二| 精品视频在线看| 欧美美女直播网站| 欧美精品电影在线播放| 7799精品视频| 日韩欧美国产一区在线观看| 日韩一二在线观看| 久久亚洲免费视频| 中文字幕免费一区| 亚洲婷婷国产精品电影人久久| 中文字幕一区二区不卡| 亚洲精品一卡二卡| 亚洲v中文字幕| 蜜桃91丨九色丨蝌蚪91桃色| 韩国成人精品a∨在线观看| 国产揄拍国内精品对白| 国产成人精品综合在线观看| 福利一区二区在线| 99久久久免费精品国产一区二区| 99re成人精品视频| 欧美日高清视频| 日韩免费成人网| 国产亚洲一区二区三区四区 | 亚洲乱码中文字幕| 亚洲国产综合视频在线观看| 五月激情综合婷婷| 精品一区二区成人精品| 成人免费高清在线| 91国内精品野花午夜精品| 欧美日韩大陆一区二区| 久久综合999| 亚洲欧美日韩人成在线播放| 天天爽夜夜爽夜夜爽精品视频| 久久99久久久欧美国产| 床上的激情91.| 欧洲一区在线电影| 精品久久人人做人人爽| 亚洲欧洲成人精品av97| 午夜视频在线观看一区二区三区| 极品少妇xxxx偷拍精品少妇| 成人app在线观看| 欧美群妇大交群的观看方式| 美脚の诱脚舐め脚责91| 国产成a人亚洲| 欧美日韩国产天堂| 国产亚洲欧美色| 亚洲一区免费观看| 国产毛片精品一区| 欧美四级电影在线观看| 久久久久9999亚洲精品| 亚洲成人一区二区| 成人性生交大片免费看视频在线 | 欧洲中文字幕精品| 久久夜色精品国产噜噜av| 亚洲综合小说图片| 国产盗摄精品一区二区三区在线| 欧洲色大大久久| 国产三级三级三级精品8ⅰ区| 亚洲一区在线观看视频| 国产suv精品一区二区883| 欧美日韩精品免费| 亚洲色图视频网站| 国产成人亚洲综合a∨猫咪| 欧美日本视频在线| 亚洲色图制服诱惑| 国产乱淫av一区二区三区| 欧美日韩一区二区电影| 亚洲欧美影音先锋| 国内精品第一页| 欧美一卡二卡在线| 亚洲青青青在线视频| 福利一区二区在线观看| 日韩精品专区在线影院观看| 亚洲国产精品久久人人爱蜜臀| 高清国产午夜精品久久久久久| 91精品黄色片免费大全| 亚洲综合视频在线| 99精品视频在线观看免费| 久久亚洲精华国产精华液 | 中文字幕佐山爱一区二区免费| 国内精品第一页| 日韩欧美国产高清| 日韩激情中文字幕| 欧美精品777| 午夜精品久久久久久久99水蜜桃 | 精品国产乱码久久久久久图片 | 91伊人久久大香线蕉| 国产丝袜欧美中文另类| 美女视频一区在线观看| 欧美剧在线免费观看网站 | 欧洲精品一区二区| 亚洲色欲色欲www| 99r国产精品| 亚洲日本在线a| 成人av在线电影| 国产精品久久久久久久久快鸭 | 日韩视频国产视频| 日av在线不卡| 日韩三级视频在线看| 日韩经典一区二区| 日韩精品中文字幕在线一区| 毛片一区二区三区| 精品欧美一区二区久久| 卡一卡二国产精品 | 成人aa视频在线观看| 国产精品盗摄一区二区三区| 成人精品视频一区二区三区 | 中文字幕一区在线观看视频| 成人小视频在线| 亚洲日本乱码在线观看| 91麻豆.com| 亚洲777理论| 欧美一区二区福利视频| 另类欧美日韩国产在线| 久久午夜国产精品| www.亚洲在线| 亚洲精品国产无天堂网2021| 欧美色区777第一页| 日本少妇一区二区| 久久只精品国产| 99re视频精品| 首页国产欧美日韩丝袜| 久久无码av三级| 99精品欧美一区二区三区小说| 一区二区三区免费看视频| 777色狠狠一区二区三区| 激情欧美日韩一区二区| 国产精品私房写真福利视频| 91浏览器打开| 日韩精品视频网| 久久综合国产精品| 色一情一伦一子一伦一区| 日日欢夜夜爽一区| 国产香蕉久久精品综合网| 91啪九色porn原创视频在线观看| 亚洲综合一区在线| 欧美精品一区视频| 99国产精品久久久| 蜜桃av一区二区| 亚洲欧美国产77777| 91精品国产综合久久福利| 国产成人精品免费一区二区| 亚洲精品成人在线| 欧美mv日韩mv国产网站| 一本一道久久a久久精品 | 国产亚洲视频系列| 91福利社在线观看| 国产一区二区在线电影| 亚洲视频一区在线| 精品国产乱码久久久久久老虎| 91视频免费观看| 经典一区二区三区| 91香蕉视频在线| 韩国精品免费视频| 亚洲成在人线在线播放| 国产精品天天看| 日韩欧美www| 欧美性淫爽ww久久久久无| 国产成人福利片| 琪琪一区二区三区| 一二三四区精品视频| 国产精品美女www爽爽爽|