Back to project page OBS-Translation-App.
The source code is released under:
MIT License
If you think the Android project OBS-Translation-App listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.door43.obs.mta.model; // w ww . j a va2 s .c o m public class TranslationNotes implements ITranslationNotes { /* CONSTANTS */ /* FIELDS */ private String frameId; private String notes; /* CONSTRUCTORS */ /* METHODS */ /* GETTERS AND SETTERS */ @Override public String getFrameId() { return frameId; } @Override public void setFrameId(String frameId) { this.frameId = frameId; } @Override public String getNotes() { return notes; } @Override public void setNotes(String notes) { this.notes = notes; } /* OBJECT METHODS */ @Override public String toString() { final StringBuilder sb = new StringBuilder("TranslationNotes{"); sb.append("frameId='").append(frameId).append('\''); sb.append(", notes=").append(notes); sb.append('}'); return sb.toString(); } }