You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Verarbeitungsergebnis.java 742B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.example.greenwatch.sensors.MicrofonHelperClasses;
  2. public class Verarbeitungsergebnis {
  3. private String status;
  4. private short maxAmp;
  5. private float db;
  6. //
  7. public Verarbeitungsergebnis(String status, short maxAmp, int db) {
  8. this.status = status;
  9. this.maxAmp = maxAmp;
  10. this.db = db;
  11. }
  12. public String getStatus() {
  13. return status;
  14. }
  15. public void setStatus(String status) {
  16. this.status = status;
  17. }
  18. public short getMaxAmp() {
  19. return maxAmp;
  20. }
  21. public void setMaxAmp(short maxAmp) {
  22. this.maxAmp = maxAmp;
  23. }
  24. public float getDB() {
  25. return db;
  26. }
  27. public void setDB(float db) {
  28. this.db = db;
  29. }
  30. }