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

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

?? build-impl.xml

?? 實現哈夫曼樹
?? 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一区二区三区免费野_久草精品视频
91极品视觉盛宴| 精品卡一卡二卡三卡四在线| 欧美xingq一区二区| 亚洲国产精品嫩草影院| 欧美日韩日日摸| 中文av一区特黄| 成人午夜碰碰视频| 中文幕一区二区三区久久蜜桃| 九九视频精品免费| 久久久亚洲精华液精华液精华液 | 欧美一二三四区在线| 日韩国产欧美在线视频| 3751色影院一区二区三区| 亚洲福中文字幕伊人影院| 欧美日韩精品三区| 午夜一区二区三区视频| 欧美成va人片在线观看| 国产精品1024| 国产精品久久久久三级| 在线观看视频一区二区欧美日韩| 伊人色综合久久天天| 欧美一区二区三区系列电影| 免播放器亚洲一区| 精品国产凹凸成av人网站| 国产一区二区调教| 亚洲婷婷在线视频| 色婷婷av一区| 久久国产成人午夜av影院| 久久精品亚洲一区二区三区浴池| 国产99久久久国产精品| 亚洲免费高清视频在线| 欧美二区在线观看| 精品午夜久久福利影院| 亚洲乱码中文字幕综合| 欧美一级午夜免费电影| 国产iv一区二区三区| 一区二区三区欧美日韩| 777奇米成人网| 国产一区二区视频在线| 亚洲最新在线观看| 精品日韩在线观看| aaa国产一区| 看电视剧不卡顿的网站| 中文字幕一区二区三区在线观看| 91视频在线观看| 韩国三级在线一区| 夜夜嗨av一区二区三区网页 | 国产激情精品久久久第一区二区| 国产精品不卡在线观看| 99久久精品国产导航| 日韩成人dvd| 日本一区二区免费在线| 欧美高清一级片在线| 成人黄动漫网站免费app| 免费亚洲电影在线| 亚洲欧美一区二区三区久本道91| 欧美mv日韩mv亚洲| 在线视频中文字幕一区二区| 奇米影视一区二区三区| 亚洲一区二区三区四区在线观看 | 国产成人三级在线观看| 丝瓜av网站精品一区二区 | 国产三级三级三级精品8ⅰ区| 久久久久国产精品麻豆| 日本中文在线一区| 亚洲gay无套男同| 亚洲精品日韩专区silk| 亚洲视频一区二区在线观看| 国产欧美日韩久久| 国产日本亚洲高清| 国产亚洲成av人在线观看导航| 日韩欧美的一区| 精品国一区二区三区| 精品久久久久久久久久久院品网| 欧美丰满美乳xxx高潮www| 欧美亚洲高清一区二区三区不卡| 色偷偷一区二区三区| 一本一本大道香蕉久在线精品 | 国产乱色国产精品免费视频| 久久国产欧美日韩精品| 久久国产精品免费| 国产麻豆成人精品| 国产成人午夜精品5599| 成人丝袜高跟foot| 91免费观看视频| 色噜噜狠狠一区二区三区果冻| 91美女在线观看| 欧美性生活影院| 3d动漫精品啪啪1区2区免费| 91精品久久久久久久91蜜桃| 欧美一区二区女人| 久久久99精品免费观看| 国产精品卡一卡二卡三| 亚洲一二三专区| 男男成人高潮片免费网站| 国内不卡的二区三区中文字幕| 韩国一区二区三区| 91香蕉视频污| 欧美二区三区91| 国产夜色精品一区二区av| 国产精品久久久久久久久免费相片| 亚洲少妇30p| 日韩精品电影在线观看| 国内精品写真在线观看| 成人午夜电影久久影院| 欧美日韩一区二区在线观看 | 成人少妇影院yyyy| 在线视频亚洲一区| 欧美一区二区三区视频在线观看 | 日韩三级电影网址| 日本一区二区三区四区 | 91精品国产aⅴ一区二区| 久久久三级国产网站| 一区二区三区在线免费视频| 免费不卡在线视频| 91亚洲国产成人精品一区二三| 欧美久久一二区| 国产精品理论片| 蜜臀av一区二区在线观看| 国产91精品欧美| 欧美日本一区二区在线观看| 欧美精品一区二区三区视频| 亚洲精品美腿丝袜| 国内外成人在线视频| 色哟哟在线观看一区二区三区| 日韩一卡二卡三卡国产欧美| 国产精品大尺度| 麻豆精品视频在线观看免费| 99视频一区二区| 久久综合久色欧美综合狠狠| 亚洲精品成人精品456| 国产麻豆视频一区二区| 欧美久久久久久久久中文字幕| 国产精品久久久久影院色老大 | 成人av小说网| 日韩精品一区二区三区三区免费| 亚洲人成网站在线| 岛国一区二区三区| 日韩欧美在线网站| 石原莉奈一区二区三区在线观看| 不卡在线视频中文字幕| 久久综合精品国产一区二区三区| 五月综合激情网| 97se亚洲国产综合自在线| 国产午夜亚洲精品午夜鲁丝片| 日韩电影免费在线看| 欧美视频中文字幕| 亚洲综合丝袜美腿| 99精品国产热久久91蜜凸| 欧美国产日韩一二三区| 国产一区二区久久| 久久综合色婷婷| 韩国在线一区二区| 精品国产电影一区二区| 免费观看一级欧美片| 3atv在线一区二区三区| 亚洲.国产.中文慕字在线| 色香蕉成人二区免费| 中文字幕亚洲综合久久菠萝蜜| 国产乱码一区二区三区| 久久久亚洲高清| 国产精品99久久久久久久vr| 精品国产乱码久久久久久浪潮| 日本系列欧美系列| 欧美成人一区二区| 国内精品国产三级国产a久久| 日韩视频免费观看高清完整版在线观看 | 亚洲综合视频在线观看| 色网综合在线观看| 亚洲综合色丁香婷婷六月图片| 色欧美88888久久久久久影院| 亚洲免费观看在线观看| 色噜噜偷拍精品综合在线| 亚洲一区二区三区四区的| 欧美色综合网站| 五月天网站亚洲| 欧美绝品在线观看成人午夜影视| 日韩黄色在线观看| 亚洲精品一区二区三区在线观看| 美女在线视频一区| 久久日韩粉嫩一区二区三区| 国产成人在线影院| 亚洲视频一区在线| 欧美日韩精品欧美日韩精品一| 视频一区二区不卡| 久久久久久夜精品精品免费| 国产精品99久久久久久宅男| 国产精品久久久一本精品| 色婷婷av一区二区三区大白胸| 亚洲成av人片www| 精品国产麻豆免费人成网站| 国产美女精品在线| 中文字幕亚洲成人| 欧美三级日韩三级国产三级| 男女性色大片免费观看一区二区 | 自拍偷拍亚洲欧美日韩| 欧美日韩免费不卡视频一区二区三区| 日韩电影在线一区二区| 国产三级久久久| 欧美色中文字幕|