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

openllet.profiler.utils.ArrayShellProfileNode Maven / Gradle / Ivy

There is a newer version: 2.6.5
Show newest version
package openllet.profiler.utils;

// ----------------------------------------------------------------------------
/**
 * A shell pseudo-_node implementation for an array class.
 *
 * @author (C) Vlad Roubtsov, 2003
 */
final class ArrayShellProfileNode extends AbstractShellProfileNode
{
	private final Class _type;
	private final int _length;

	@Override
	public String name()
	{
		return "";
	}

	ArrayShellProfileNode(final IObjectProfileNode parent, final Class type, final int length)
	{
		super(parent);

		_type = type;
		_length = length;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy