@ -56,7 +56,9 @@ public class AssetsPropertiesPanel extends javax.swing.JPanel implements ActionL
private Project project ;
/** Creates new form ProjectAssetsPropertiesPanel */
/ * *
* Creates new form ProjectAssetsPropertiesPanel
* /
public AssetsPropertiesPanel ( Project propertiesFile ) {
initComponents ( ) ;
this . project = propertiesFile ;
@ -64,10 +66,10 @@ public class AssetsPropertiesPanel extends javax.swing.JPanel implements ActionL
HelpCtx . setHelpIDString ( this , "sdk.application_deployment" ) ;
}
/ * * This method is called from within the constructor to
* initialize the form .
* WARNING : Do NOT modify this code . The content of this method is
* always regenerated by the Form Editor .
/ * *
* This method is called from within the constructor to initialize the form .
* WARNING : Do NOT modify this code . The content of this method is always
* regenerated by the Form Editor .
* /
@SuppressWarnings ( "unchecked" )
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
@ -187,7 +189,11 @@ public class AssetsPropertiesPanel extends javax.swing.JPanel implements ActionL
properties . setProperty ( "assets.jar.name" , jTextField1 . getText ( ) ) ;
properties . setProperty ( "assets.excludes" , jTextField2 . getText ( ) ) ;
properties . setProperty ( "assets.folder.name" , jTextField3 . getText ( ) ) ;
if ( jTextField3 . getText ( ) ! = null & & jTextField3 . getText ( ) . trim ( ) . length ( ) > 0 ) {
properties . setProperty ( "assets.folder.name" , jTextField3 . getText ( ) ) ;
} else {
properties . setProperty ( "assets.folder.name" , ( String ) null ) ;
}
if ( jCheckBox1 . isSelected ( ) ) {
properties . setProperty ( "assets.compress" , "true" ) ;
} else {