package de.anna.cellfreestick; /** * Created by iGEM-Bielefeld on 30.08.2015. */ public class HeavyMetals { //declaration of variables private String title; private String content; //constructs a simple list element for one of our analytes public HeavyMetals(String title, String content) { this.title = title; this.content = content; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } @Override public String toString() { return title; } }