01: package sisc.boot;
02:
03: /**
04: * HeapAnchor exists solely to provide the following functionality:
05: * URL heapURL = sisc.boot.HeapAnchor.class.getResource("sisc.shp");
06: *
07: * @author Turadg Aleahmad
08: */
09: public abstract class HeapAnchor {
10: }
11:
12: /*
13: * The contents of this file are subject to the Mozilla Public
14: * License Version 1.1 (the "License"); you may not use this file
15: * except in compliance with the License. You may obtain a copy of
16: * the License at http://www.mozilla.org/MPL/
17: *
18: * Software distributed under the License is distributed on an "AS
19: * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
20: * implied. See the License for the specific language governing
21: * rights and limitations under the License.
22: *
23: * The Original Code is the Second Interpreter of Scheme Code (SISC).
24: *
25: * The Initial Developer of the Original Code is Scott G. Miller.
26: * Portions created by Scott G. Miller are Copyright (C) 2000-2007
27: * Scott G. Miller. All Rights Reserved.
28: *
29: * Contributor(s):
30: * Matthias Radestock
31: * Turadg Aleahmad
32: *
33: *
34: * Alternatively, the contents of this file may be used under the
35: * terms of the GNU General Public License Version 2 or later (the
36: * "GPL"), in which case the provisions of the GPL are applicable
37: * instead of those above. If you wish to allow use of your
38: * version of this file only under the terms of the GPL and not to
39: * allow others to use your version of this file under the MPL,
40: * indicate your decision by deleting the provisions above and
41: * replace them with the notice and other provisions required by
42: * the GPL. If you do not delete the provisions above, a recipient
43: * may use your version of this file under either the MPL or the
44: * GPL.
45: */
|