Package org.netbeans.jemmy.demo
Class Demonstrator
- java.lang.Object
-
- org.netbeans.jemmy.demo.Demonstrator
-
public class Demonstrator extends java.lang.ObjectClass to display step comments.- Author:
- Alexandre Iline (alexandre.iline@sun.com)
-
-
Constructor Summary
Constructors Constructor Description Demonstrator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidnextStep(java.lang.String stepComment)Notifies current CommentWindow implementation to display comments for a new step.static voidsetCommentWindow(CommentWindow cw)Changes current CommentWindow.static voidsetTitle(java.lang.String title)Notifies current CommentWindow implementation to change title.static voidshowFinalComment(java.lang.String stepComment)Notifies current CommentWindow implementation to display final comments.
-
-
-
Method Detail
-
setTitle
public static void setTitle(java.lang.String title)
Notifies current CommentWindow implementation to change title.- Parameters:
title- new CommentWindow's title
-
setCommentWindow
public static void setCommentWindow(CommentWindow cw)
Changes current CommentWindow.- Parameters:
cw- CommentWindow instance.
-
nextStep
public static void nextStep(java.lang.String stepComment)
Notifies current CommentWindow implementation to display comments for a new step.- Parameters:
stepComment- New step comments
-
showFinalComment
public static void showFinalComment(java.lang.String stepComment)
Notifies current CommentWindow implementation to display final comments.- Parameters:
stepComment- New step comments
-
-