Пример #1
0
 /**
  * Get the state of the selection.
  *
  * @return The state of the selection.
  */
 public String getHtml() {
   return mConverter.getHtml();
 }
Пример #2
0
 /**
  * Get the state of the selection.
  *
  * @param uris The array of used uris.
  * @return The state of the selection.
  */
 public String getHtml(ArrayList<Uri> uris) {
   mConverter.getUriArray(uris, getText());
   return mConverter.getHtml();
 }
Пример #3
0
 /**
  * Set html to EditStyledText.
  *
  * @param html The html to be set.
  */
 public void setHtml(String html) {
   mConverter.SetHtml(html);
 }