1 package uk.ac.ebi.intenz.domain.enzyme; 2 3 /** 4 * Interface for data objects to which a comment is applied. 5 */ 6 public interface Commented { 7 8 public String getDataComment(); 9 10 public void setDataComment(String comment); 11 12 }