All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmol.console.GenericTextArea Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package org.jmol.console;

public interface GenericTextArea {

  // input
  
  int getCaretPosition(); 

  // output
  
  void append(String message);

  // both
  
  String getText();
  void setText(String text);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy