comparison scripts/java/questdlg.m @ 16392:801297f14e4b

doc: Improve documentation for Java chapter and java functions. * doc/interpreter/java.txi, scripts/java/javamem.m, scripts/java/listdlg.m, scripts/java/msgbox.m, scripts/java/questdlg.m: Improve documentation for Java chapter and java functions.
author Rik <rik@octave.org>
date Fri, 29 Mar 2013 12:05:45 -0700
parents 921912c92102
children
comparison
equal deleted inserted replaced
16391:a695ee2dc17e 16392:801297f14e4b
26 ## of the activated button. 26 ## of the activated button.
27 ## 27 ##
28 ## The dialog may contain two or three buttons which will all close the dialog. 28 ## The dialog may contain two or three buttons which will all close the dialog.
29 ## 29 ##
30 ## The message may have multiple lines separated by newline characters 30 ## The message may have multiple lines separated by newline characters
31 ## (@code{"\n"}), or it may be a cellstr array with one element for each 31 ## ("\n"), or it may be a cellstr array with one element for each
32 ## line. The optional @var{title} (character string) can be used to 32 ## line. The optional @var{title} (character string) can be used to
33 ## decorate the dialog caption. 33 ## decorate the dialog caption.
34 ## 34 ##
35 ## The string @var{default} identifies the default button, 35 ## The string @var{default} identifies the default button,
36 ## which is activated by pressing the @kbd{ENTER} key. 36 ## which is activated by pressing the @key{ENTER} key.
37 ## It must match one of the strings given in @var{btn1}, @var{btn2} or 37 ## It must match one of the strings given in @var{btn1}, @var{btn2}, or
38 ## @var{btn3}. 38 ## @var{btn3}.
39 ## 39 ##
40 ## If only @var{msg} and @var{title} are specified, three buttons with 40 ## If only @var{msg} and @var{title} are specified, three buttons with
41 ## the default captions "Yes", "No", and "Cancel" are used. 41 ## the default captions "Yes", "No", and "Cancel" are used.
42 ## 42 ##