< prev index next >

core/JemmyCore/src/org/jemmy/interfaces/Label.java

Print this page




  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package org.jemmy.interfaces;
  26 
  27 import org.jemmy.control.Property;
  28 import org.jemmy.control.Wrap;
  29 
  30 /**
  31  * Read only text component.
  32  * @author shura
  33  */
  34 
  35 public interface Label extends ControlInterface {
  36     /**
  37      * Returns the currently displayed text.
  38      * TODO: Wrap.waitText
  39      * @return
  40      */
  41     @Property(Wrap.TEXT_PROP_NAME)
  42     public String text();
  43 }


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package org.jemmy.interfaces;
  26 
  27 import org.jemmy.control.Property;
  28 import org.jemmy.control.Wrap;
  29 
  30 /**
  31  * Read only text component.
  32  * @author shura
  33  */
  34 
  35 public interface Label extends ControlInterface {
  36     /**
  37      * Returns the currently displayed text.
  38      * TODO: Wrap.waitText
  39      * @return the currently displayed text
  40      */
  41     @Property(Wrap.TEXT_PROP_NAME)
  42     public String text();
  43 }
< prev index next >