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 av a 2 s . c o m*/ import java.util.Set; /** * ITranslation note object: * <ul> * <li>holds translation notes for one frame</li> * </ul> */ public interface ITranslationNotes { /** * Identification of related {@link org.door43.obs.mta.model.IFrame} * @return Frame ID. */ String getFrameId(); /** * Sets related frame ID * @param frameId */ void setFrameId(String frameId); /** * @return Notes string. */ String getNotes(); /** * Set notes. * @param notes Can be string or HTML or whatever for now. */ void setNotes(String notes); }