GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / commons / org / codehaus / groovy / grails / cli / support / GrailsRootLoader.java
blob1a86936de2fd239ccf9adcf845b0ee1c80c778a8
1 /* Copyright 2004-2005 Graeme Rocher
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
15 package org.codehaus.groovy.grails.cli.support;
17 import org.codehaus.groovy.tools.RootLoader;
18 import org.codehaus.groovy.tools.LoaderConfiguration;
20 import java.net.URL;
22 /**
23 * @author Graeme Rocher
24 * @since 1.0
25 * <p/>
26 * Created: Nov 29, 2007
28 public class GrailsRootLoader extends RootLoader {
29 public GrailsRootLoader(URL[] urls, ClassLoader parent) {
30 super(urls, parent);
33 public GrailsRootLoader(LoaderConfiguration lc) {
34 super(lc);
37 protected Class loadClass(String name, boolean resolve) throws ClassNotFoundException {
38 try {
39 return super.loadClass(name, resolve);
40 } catch (LinkageError e) {
41 return getParent().loadClass(name);