Changeset 487 in tmcsimulator for branches/SVNtutorial/PizzaOrderIntl


Ignore:
Timestamp:
10/15/2019 05:00:50 PM (7 years ago)
Author:
jdalbey
Message:

PizzaOrderIntl? change project properties to not use JUnit, solving the inconsistent libraries problem. Fix the unchecked exception compile error.

Location:
branches/SVNtutorial/PizzaOrderIntl
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SVNtutorial/PizzaOrderIntl/nbproject/project.properties

    r486 r487  
    1 #Tue Oct 15 18:16:37 PDT 2019 
     1#Tue Oct 15 18:27:22 PDT 2019 
    22excludes= 
    33javac.deprecation=false 
    44build.test.results.dir=${build.dir}/test/results 
    5 run.classpath=${javac.classpath}\:${build.classes.dir} 
     5javac.external.vm=false 
     6run.classpath=\ 
     7    ${javac.classpath}:\ 
     8    ${build.classes.dir} 
    69javadoc.nonavbar=false 
    7 run.test.classpath=${javac.test.classpath}\:${build.test.classes.dir} 
     10run.test.classpath=\ 
     11    ${javac.test.classpath}:\ 
     12    ${build.test.classes.dir} 
    813annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 
    9 javac.processorpath=${javac.classpath} 
     14javac.processorpath=\ 
     15    ${javac.classpath} 
    1016javac.target=1.7 
    1117annotation.processing.processors.list= 
     
    3440javac.source=1.7 
    3541application.vendor=jdalbey 
    36 junit.selected.version=4 
     42junit.selected.version=3 
    3743debug.classpath=${run.classpath} 
    3844run.jvmargs= 
    39 build.generated.dir=${build.dir}/generated 
    40 jar.compress=false 
    4145javac.test.classpath=\ 
    4246    ${javac.classpath}:\ 
    43     ${build.classes.dir}:\ 
    44     ${libs.junit_4.classpath}:\ 
    45     ${libs.hamcrest.classpath} 
     47    ${build.classes.dir} 
     48jar.compress=false 
     49build.generated.dir=${build.dir}/generated 
    4650javadoc.private=false 
    4751annotation.processing.run.all.processors=true 
    4852application.title=PizzaOrderIntl 
    4953meta.inf.dir=${src.dir}/META-INF 
     54annotation.processing.enabled=true 
    5055manifest.file=manifest.mf 
    51 annotation.processing.enabled=true 
    5256dist.javadoc.dir=${dist.dir}/javadoc 
    5357src.dir=src 
     58endorsed.classpath= 
    5459mkdist.disabled=false 
    55 endorsed.classpath= 
    56 javac.classpath=${libs.junit.classpath}\:${libs.junit_4.classpath} 
    5760annotation.processing.enabled.in.editor=false 
     61javac.classpath= 
    5862build.generated.sources.dir=${build.dir}/generated-sources 
    5963javadoc.version=false 
  • branches/SVNtutorial/PizzaOrderIntl/src/pizzaorder/GUI.form

    r481 r487  
    1 <?xml version="1.1" encoding="UTF-8" ?> 
     1<?xml version="1.0" encoding="UTF-8" ?> 
    22 
    33<Form version="1.3" maxVersion="1.7" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> 
     
    4545    <SyntheticProperty name="menuBar" type="java.lang.String" value="menubar"/> 
    4646    <SyntheticProperty name="formSizePolicy" type="int" value="1"/> 
     47    <SyntheticProperty name="generateCenter" type="boolean" value="false"/> 
    4748  </SyntheticProperties> 
    4849  <AuxValues> 
     
    153154                <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="comboLocaleActionPerformed"/> 
    154155              </Events> 
     156              <AuxValues> 
     157                <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="&lt;String&gt;"/> 
     158              </AuxValues> 
    155159            </Component> 
    156160          </SubComponents> 
  • branches/SVNtutorial/PizzaOrderIntl/src/pizzaorder/GUI.java

    r481 r487  
    5555        jPanel2 = new javax.swing.JPanel(); 
    5656        lblLocale = new javax.swing.JLabel(); 
    57         comboLocale = new javax.swing.JComboBox(); 
     57        comboLocale = new javax.swing.JComboBox<>(); 
    5858        jPanel3 = new javax.swing.JPanel(); 
    5959        lblToppings = new javax.swing.JLabel(); 
     
    357357    // Variables declaration - do not modify//GEN-BEGIN:variables 
    358358    private javax.swing.JButton btnSubmit; 
    359     private javax.swing.JComboBox comboLocale; 
     359    private javax.swing.JComboBox<String> comboLocale; 
    360360    private javax.swing.JCheckBox jCheckBox1; 
    361361    private javax.swing.JCheckBox jCheckBox2; 
Note: See TracChangeset for help on using the changeset viewer.