01: // -*-java-*-
02: //
03: // Copyright (C) 2004 Alan W. Irwin
04: //
05: // This file is part of PLplot.
06: //
07: // PLplot is free software; you can redistribute it and/or modify
08: // it under the terms of the GNU General Library Public License as published
09: // by the Free Software Foundation; either version 2 of the License, or
10: // (at your option) any later version.
11: //
12: // PLplot is distributed in the hope that it will be useful,
13: // but WITHOUT ANY WARRANTY; without even the implied warranty of
14: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: // GNU Library General Public License for more details.
16: //
17: // You should have received a copy of the GNU Library General Public License
18: // along with PLplot; if not, write to the Free Software
19: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20:
21: package test.plplot.core;
22:
23: public class config {
24: // Must be installed absolute path name of generated DLL
25: public static String libname = "jplplot.dll";
26: };
|