Changeset 34135 in osm for applications/editors/josm/plugins/indoorhelper/src/views/ToolBoxView.java
- Timestamp:
- 2018-03-27T11:48:29+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/src/views/ToolBoxView.java
r34005 r34135 337 337 338 338 //---- applyButton ---- 339 applyButton.setText( tr("Apply"));339 applyButton.setText("Apply"); 340 340 applyButton.setToolTipText(tr("Add selected tags and/or relations to obeject.")); 341 341 applyButton.setEnabled(false); … … 350 350 351 351 /** 352 * Enables or disables the interactive UI elements of the toolbox.352 * Enables or disables the interactive UI elements of {@link #ToolBoxView}. 353 353 * 354 354 * @param enabled set this true for enabled elements … … 380 380 381 381 /** 382 * Enables or disables the interactive text box elements {@link #name} and {@link #ref}. 382 * Enables or disables the interactive text box elements {@link #nameField} and {@link #refField}. 383 383 * 384 384 * @param enabled set this true for enabled elements … … 391 391 392 392 /** 393 * Enables or disables the interactive text box element {@link #repeatOn}. 393 * Enables or disables the interactive text box element {@link #repeatOnField}. 394 394 * @param enabled set this true for enabled elements 395 395 */ … … 399 399 400 400 /** 401 * Enables or disables the interactive text box element {@link #levelName}. 401 * Enables or disables the interactive text box element {@link #levelNameField} and {@link #addLevelButton}. 402 402 * @param enabled set this true for enabled elements 403 403 */ … … 409 409 410 410 /** 411 * Enables or disables the interactive ComboBoxes {@link #multi RoleBox} and {@link #multiEditBox}.411 * Enables or disables the interactive ComboBoxes {@link #multiOuterButton} and {@link #multiInnerButton}. 412 412 * @param enabled set this true for enabled elements 413 413 */ … … 420 420 421 421 /** 422 * Resets the view by making the UI elements disabled and deleting the level list.422 * Resets the view by making the UI elements disabled. 423 423 */ 424 424 public void reset() { … … 427 427 428 428 /** 429 * Getter for the selected {@link IndoorObject} in the objectBox. 429 * Getter for the selected {@link IndoorObject} in the {@link #objectBox}. 430 430 * 431 431 * @return the selected indoor object in the object ComboBox. … … 445 445 446 446 /** 447 * Setter for the level name field.447 * Setter for the {@link #levelNameField}. 448 448 * 449 449 * @param name the String for the {@link #levelNameField} … … 454 454 455 455 /** 456 * Getter for the name tag{@linkTextField}.457 * 458 * @return {@link String}of the name text field456 * Getter for the {@link #nameField}. 457 * 458 * @return String of the name text field 459 459 */ 460 460 public String getNameText() { … … 463 463 464 464 /** 465 * Setter for the current level value tag 465 * Setter for the current level value tag {@link #levelLabel}. 466 466 * 467 467 * @author rebsc 468 * @param currentlevel value as String468 * @param levelTag level value as String 469 469 */ 470 470 public void setLevelLabel(String levelTag) { … … 481 481 482 482 /** 483 * Getter for the CheckBox Status483 * Getter for the {@link #levelCheckBox} status. 484 484 * 485 485 * @return boolean which tells if box is selected or not. … … 490 490 491 491 /** 492 * Getter for the ref{@linkTextField}.493 * 494 * @return {@link String}of the ref text field492 * Getter for the {@link #refField}. 493 * 494 * @return String of the ref text field 495 495 */ 496 496 public String getRefText() { … … 499 499 500 500 /** 501 * Getter for the repeat on {@linkTextField}.502 * @return {@link String}of the repeat on text field501 * Getter for the repeat on TextField. 502 * @return String of the repeat on text field 503 503 */ 504 504 public String getRepeatOnText() { … … 507 507 508 508 /** 509 * Clears the text boxes and sets an empty {@link String}.509 * Clears the text boxes and sets an empty String. 510 510 */ 511 511 public void resetUiElements() { … … 518 518 519 519 /** 520 * Set the listener for the apply button.520 * Set the listener for the {@link #applyButton}. 521 521 * 522 522 * @param l the listener to set … … 527 527 528 528 /** 529 * Set the listener for CheckBox.529 * Set the listener for {@link #levelCheckBox}. 530 530 * @param l the listener to set 531 531 */ … … 535 535 536 536 /** 537 * Set the listener for helpButton. 537 * Set the listener for {@link #helpButton}. 538 538 * @param l the listener to set 539 539 */ … … 543 543 544 544 /** 545 * Set the listener for addLevelButton. 545 * Set the listener for {@link #addLevelButton}. 546 546 * @param l the listener to set 547 547 */ … … 552 552 553 553 /** 554 * Set the listener for object box.554 * Set the listener for {@link #objectBox}. 555 555 * 556 556 * @param l the listener to set … … 561 561 562 562 /** 563 * Set the listener for the OUTTER button.563 * Set the listener for the {@link #multiOuterButton}. 564 564 * 565 565 * @param l the listener to set … … 570 570 571 571 /** 572 * Set the listener for the INNER button.572 * Set the listener for the {@link #multiInnerButton}. 573 573 * 574 574 * @param l the listener to set … … 579 579 580 580 /** 581 * Set the listener for the multi checkbox.581 * Set the listener for the {@link #multiCheckBox}. 582 582 * 583 583 * @param l the listener to set
Note:
See TracChangeset
for help on using the changeset viewer.