diff --git a/wprProfiles/CPUProfile.wpaProfile b/CPUProfile.wpaProfile similarity index 100% rename from wprProfiles/CPUProfile.wpaProfile rename to CPUProfile.wpaProfile diff --git a/wprProfiles/GPUProfile.wpaProfile b/GPUProfile.wpaProfile similarity index 100% rename from wprProfiles/GPUProfile.wpaProfile rename to GPUProfile.wpaProfile diff --git a/wprProfiles/MemoryProfile.wpaProfile b/MemoryProfile.wpaProfile similarity index 100% rename from wprProfiles/MemoryProfile.wpaProfile rename to MemoryProfile.wpaProfile diff --git a/wprProfiles/StorageProfile.wpaProfile b/StorageProfile.wpaProfile similarity index 100% rename from wprProfiles/StorageProfile.wpaProfile rename to StorageProfile.wpaProfile diff --git a/nbproject/project.properties b/nbproject/project.properties index 0c51097..609693f 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -1,9 +1,11 @@ annotation.processing.enabled=true annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= annotation.processing.processors.list= annotation.processing.run.all.processors=true annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +application.title=ETL_TO_CSV +application.vendor=Pubudu +auxiliary.org-netbeans-spi-editor-hints-projects.perProjectHintSettingsFile=nbproject/cfg_hints.xml build.classes.dir=${build.dir}/classes build.classes.excludes=**/*.java,**/*.form # This directory is removed when the project is cleaned: @@ -26,9 +28,12 @@ dist.archive.excludes= dist.dir=dist dist.jar=${dist.dir}/ETL_TO_CSV.jar dist.javadoc.dir=${dist.dir}/javadoc +endorsed.classpath= excludes= includes=** +jar.archive.disabled=${jnlp.enabled} jar.compress=false +jar.index=${jnlp.enabled} javac.classpath= # Space-separated list of extra javac options javac.compilerargs= @@ -54,7 +59,24 @@ javadoc.splitindex=true javadoc.use=true javadoc.version=false javadoc.windowtitle= -main.class=etl_to_csv.ETL_TO_CSV +jnlp.codebase.type=no.codebase +jnlp.descriptor=application +jnlp.enabled=false +jnlp.mixed.code=default +jnlp.offline-allowed=false +jnlp.signed=false +jnlp.signing= +jnlp.signing.alias= +jnlp.signing.keystore= +main.class=etl_to_csv.ExportCSV +# Optional override of default Application-Library-Allowable-Codebase attribute identifying the locations where your signed RIA is expected to be found. +manifest.custom.application.library.allowable.codebase= +# Optional override of default Caller-Allowable-Codebase attribute identifying the domains from which JavaScript code can make calls to your RIA without security prompts. +manifest.custom.caller.allowable.codebase= +# Optional override of default Codebase manifest attribute, use to prevent RIAs from being repurposed +manifest.custom.codebase= +# Optional override of default Permissions manifest attribute (supported values: sandbox, all-permissions) +manifest.custom.permissions= manifest.file=manifest.mf meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false diff --git a/src/etl_to_csv/ExportCSV.java b/src/etl_to_csv/ExportCSV.java index 2382ed3..c935466 100644 --- a/src/etl_to_csv/ExportCSV.java +++ b/src/etl_to_csv/ExportCSV.java @@ -324,25 +324,25 @@ private void btnBrowseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIR private void jRadioButtonCPUActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jRadioButtonCPUActionPerformed m_ProfileDirectory = "CPU_Profile"; - m_WPRProfile = m_ProfilePath + "CPUProfile.wpaProfile"; + m_WPRProfile = "CPUProfile.wpaProfile"; m_RadioButtonSelectedFlag = true; }//GEN-LAST:event_jRadioButtonCPUActionPerformed private void jRadioButtonGPUActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jRadioButtonGPUActionPerformed m_ProfileDirectory = "GPU_Profile"; - m_WPRProfile = m_ProfilePath + "GPUProfile.wpaProfile"; + m_WPRProfile = "GPUProfile.wpaProfile"; m_RadioButtonSelectedFlag = true; }//GEN-LAST:event_jRadioButtonGPUActionPerformed private void jRadioButtonMemoryActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jRadioButtonMemoryActionPerformed m_ProfileDirectory = "Memory_Profile"; - m_WPRProfile = m_ProfilePath + "MemoryProfile.wpaProfile"; + m_WPRProfile = "MemoryProfile.wpaProfile"; m_RadioButtonSelectedFlag = true; }//GEN-LAST:event_jRadioButtonMemoryActionPerformed private void jRadioButtonStorageActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jRadioButtonStorageActionPerformed m_ProfileDirectory = "Storage_Profile"; - m_WPRProfile = m_ProfilePath + "StorageProfile.wpaProfile"; + m_WPRProfile = "StorageProfile.wpaProfile"; m_RadioButtonSelectedFlag = true; }//GEN-LAST:event_jRadioButtonStorageActionPerformed