Coverage Report - org.jtheque.core.utils.db.Note
 
Classes in this File Line Coverage Branch Coverage Complexity
Note
N/A
N/A
1
 
 1  
 package org.jtheque.core.utils.db;
 2  
 
 3  
 /**
 4  
  * A note specification.
 5  
  *
 6  
  * @author Baptiste Wicht
 7  
  */
 8  
 public interface Note {
 9  
     /**
 10  
      * Return the internationalized text of the note.
 11  
      *
 12  
      * @return A text representation of the note.
 13  
      */
 14  
     String getInternationalizedText();
 15  
 
 16  
     /**
 17  
      * Return the element name of the note.
 18  
      *
 19  
      * @return The element name.
 20  
      */
 21  
     String getElementName();
 22  
 
 23  
     /**
 24  
      * Return the value of the note.
 25  
      *
 26  
      * @return The int value of note.
 27  
      */
 28  
     DaoNotes.NoteType getValue();
 29  
 }