KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > eclipse > console > EclipseConsoleConfiguration


1 /*
2  * Created on 2004-11-01 by max
3  *
4  */

5 package org.hibernate.eclipse.console;
6
7 import org.hibernate.console.ConsoleConfiguration;
8 import org.hibernate.console.ConsoleConfigurationPreferences;
9
10 /**
11  * @author max
12  *
13  */

14 public class EclipseConsoleConfiguration extends ConsoleConfiguration {
15
16     public EclipseConsoleConfiguration(ConsoleConfigurationPreferences config) {
17         super(config);
18     }
19
20     protected ClassLoader JavaDoc getParentClassLoader() {
21         return HibernateConsolePlugin.getDefault().getClass().getClassLoader();
22     }
23
24 }
25
Popular Tags