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

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

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

// ----------------------------------------------------------------------------
/**
 * A shell pseudo-_node implementation for a non-array class.
 *
 * @author (C) Vlad Roubtsov, 2003
 */
final class ObjectShellProfileNode extends AbstractShellProfileNode
{
	// public: ................................................................    

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

	// protected: .............................................................

	// package: ...............................................................

	ObjectShellProfileNode(final IObjectProfileNode parent, final int primitiveFieldCount, final int refFieldCount)
	{
		super(parent);

		_primitiveFieldCount = primitiveFieldCount;
		_refFieldCount = refFieldCount;
	}

	// private: ...............................................................

	private final int _primitiveFieldCount, _refFieldCount;

} // _end of class
// ----------------------------------------------------------------------------




© 2015 - 2025 Weber Informatics LLC | Privacy Policy