Skip to content

Commit

Permalink
Put wpaProfiles in the root
Browse files Browse the repository at this point in the history
  • Loading branch information
PubuduS committed Aug 22, 2022
1 parent a327e1e commit db8f953
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
26 changes: 24 additions & 2 deletions nbproject/project.properties
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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=
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/etl_to_csv/ExportCSV.java
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit db8f953

Please sign in to comment.