Skip to content

Commit 39d8fa7

Browse files
authored
Merge pull request #10 from rollno748/csv-config-2.0
Added tooltip for all components
2 parents 1978bb4 + 1c5de2c commit 39d8fa7

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

src/main/java/com/di/jmeter/config/gui/ExtendedCsvDataSetConfigGui.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,24 @@ private void init() {
204204
allocateLabel1.setEnabled(false);
205205
allocateLabel2.setEnabled(false);
206206
allocateRButton.setSelected(false);
207+
/*
208+
* tooltip goes here
209+
*/
210+
filenameField.setToolTipText("Name of the file that holds the csv data (relative or absolute filename)");
211+
browseButton.setToolTipText("Browse...");
212+
viewFileButton.setToolTipText("View/Edit file in system default editor");
213+
fileEncodingCBox.setToolTipText("The character set encoding used in the file");
214+
variableNamesField.setToolTipText("List your variable names in order to match the order of columns in your csv data. Keep it empty to use the first line of the file for variable names");
215+
ignoreFirstLineCBox.setToolTipText("Ignore first line of CSV file, it will only be used used if Variable Names is not empty, if Variable Names is empty the first line must contain the headers");
216+
delimiterField.setToolTipText("Enter the delimiter ('\\t' for tab)");
217+
quotedDataCBox.setToolTipText("Allow CSV data values to be quoted?");
218+
selectRowCBox.setToolTipText("Options on reading file");
219+
updateValueCBox.setToolTipText("Options on update parameter during run");
220+
ooValueCBox.setToolTipText("Options while reaching EOF");
221+
sharingModeCBox.setToolTipText("Select which threads share the same file pointer");
222+
autoAllocateRButton.setToolTipText("Automatically calculates the blocksize for each thread(s)");
223+
allocateRButton.setToolTipText("Custom allocation of blocksize for each thread(s)");
224+
blockSizeField.setToolTipText("Blocksize value for custom allocation of threads");
207225

208226
rootPanel.add(csvDataSourceConfigBox, BorderLayout.NORTH);
209227
rootPanel.add(allocateBlockConfigBox, BorderLayout.CENTER);

0 commit comments

Comments
 (0)