comparison scripts/java/usejava.m @ 16768:e2de3c8882be

copyright notice fixes * libgui/src/color-picker.cc, libgui/src/color-picker.h, libgui/src/m-editor/octave-qscintilla.cc, libgui/src/m-editor/octave-qscintilla.h, libgui/src/qtinfo/parser.cc, libgui/src/qtinfo/parser.h, libgui/src/qtinfo/webinfo.cc, libgui/src/qtinfo/webinfo.h, libinterp/corefcn/ellipj.cc, libinterp/interp-core/jit-ir.cc, libinterp/interp-core/jit-ir.h, libinterp/interp-core/jit-typeinfo.cc, libinterp/interp-core/jit-typeinfo.h, libinterp/interp-core/jit-util.cc, libinterp/interp-core/jit-util.h, libinterp/interp-core/pt-jit.cc, libinterp/interp-core/pt-jit.h, libinterp/template-inst/Array-jit.cc, liboctave/numeric/bsxfun.h, liboctave/util/kpse.cc, scripts/image/imfinfo.m, scripts/image/imread.m, scripts/io/importdata.m, scripts/io/textscan.m, scripts/java/usejava.m, scripts/linear-algebra/logm.m, scripts/sparse/bicg.m, scripts/specfun/ellipke.m, scripts/specfun/expint.m, scripts/strings/strjoin.m: List email addresses in Author: lines. Update copyright notices to use web address for FSF.
author John W. Eaton <jwe@octave.org>
date Tue, 18 Jun 2013 06:39:12 -0400
parents 420b5603cbbf
children bc924baa2c4e
comparison
equal deleted inserted replaced
16767:47fbafc6e8e2 16768:e2de3c8882be
1 ## Copyright (C) 2012 Rik Wehbring 1 ## Copyright (C) 2012 Rik Wehbring
2 ## Parts Copyright (C) 2012 Philip Nienhuis <prnienhuis@users.sf.net> 2 ## Parts Copyright (C) 2012 Philip Nienhuis
3 ## 3 ##
4 ## This file is part of Octave. 4 ## This file is part of Octave.
5 ## 5 ##
6 ## Octave is free software; you can redistribute it and/or modify it 6 ## Octave is free software; you can redistribute it and/or modify it
7 ## under the terms of the GNU General Public License as published by 7 ## under the terms of the GNU General Public License as published by
42 ## their behavior based on the availability of Java. The feature "desktop" 42 ## their behavior based on the availability of Java. The feature "desktop"
43 ## always returns @code{false} as Octave has no Java-based desktop. Other 43 ## always returns @code{false} as Octave has no Java-based desktop. Other
44 ## features may be available if Octave was compiled with the Java Interface 44 ## features may be available if Octave was compiled with the Java Interface
45 ## and Java is installed. 45 ## and Java is installed.
46 ## @end deftypefn 46 ## @end deftypefn
47
48 ## Author: Rik Wehbring
49 ## Author: Philip Nienhuis <prnienhuis@users.sf.net>
47 50
48 function retval = usejava (feature) 51 function retval = usejava (feature)
49 52
50 if (nargin != 1 || ! ischar (feature)) 53 if (nargin != 1 || ! ischar (feature))
51 print_usage (); 54 print_usage ();