• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Matisse Question

 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I know that Matisse saves it's form data in XML file(s). When bundling up the app to run outside of netbeans, can you tell netbeans to move all the xml into java equavellent code? Or are you stuck with the XML and the additional libraries beyond the layout managers?

Thanks.
 
Author
Posts: 531
Mac OS X Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
Netbeans convert those .form files to Java code and java class in your distribution jar file. so , there are no .form in final package and thos forms are just for design time.

also ,If you take a look at Properties page of a general j2se project under packaging node you will see that IDE Excludes .form from a package
simply it means that it will be just java code that runs and show you the forms.
reply
    Bookmark Topic Watch Topic
  • New Topic