All Downloads are FREE. Search and download functionalities are using the official Maven repository.

patterntesting.runtime.monitor.ClasspathDigger Maven / Gradle / Ivy

/*
 * $Id: ClasspathDigger.java,v 1.28 2016/02/27 16:08:24 oboehm Exp $
 *
 * Copyright (c) 2009 by Oliver Boehm
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * (c)reated 15.05.2009 by oliver ([email protected])
 */

package patterntesting.runtime.monitor;

/**
 * This helper class digs into found classloader for information like
 * used classpath and other things. It was extracted from ClasspathMonitor
 * to separate the classloader specific part of it into its own class.
 * 

* Since 1.6.1 this class was moved into the internal package. It is not * intended for external use *

*

* TODO: This class will be removed in 1.8 *

* * @author oliver * @version $Revision: 1.28 $ * @since 15.05.2009 * @deprecated only intended for internal use */ @Deprecated public class ClasspathDigger extends patterntesting.runtime.monitor.internal.ClasspathDigger { /** * Instantiates a new classpath digger. */ public ClasspathDigger() { super(); } /** * Instantiates a new classpath digger. * * @param cloader the cloader */ public ClasspathDigger(final ClassLoader cloader) { super(cloader); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy