<!-- Stuff here is only used when compiling a standalone jar ofthetabcontrolforuseoutsidenetbeans.Whatyouneed: -Acompletecheckoutofthismodule -Acheckoutofatleastthedirsrc/org/openide/awtfromthecvs moduleopenide
<target name="check-openide" unless="found-openide">
<property name="dont-do-checkout" value="true"/>
<fail message="You need a checkout of openide to build this jar. Only three needed classes from it will be compiled and included in the resulting jar from this build."/>
</target>
<target name="set-openide-dir" if="found-openide">
<property value="../openide/src" name="openide-source-dir"/>
<echo message="Openide src dir set to ${openide-source-dir}"/>
</target>
<target name="beanjar" description="Compiles the tabbed control as a standalone library" depends="compile-bean">
<jar basedir="beanclasses" jarfile="tabbedcontainer.jar"/>
</target>
<target name="clean-bean" description="Clean build products from creating the bean jar">
<delete dir="beanstubs/org/openide/awt"/>
<delete dir="beanclasses"/>
<delete file="tabbedcontainer.jar"/>
</target>
<target name="test-beanjar" depends="rebuild-beanjar,compile-beanjar-demo" description="Runs the demo based on a build of the bean jar rather than class files">
<echo message="Demo args: ${application.args}"/>
<java fork="true" classname="org.netbeans.swing.tabcontrol.demo.TestFrame" args="${application.args}">
<classpath refid="beanjar-demo.cp"/>
</java>
</target>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.