openllet.profiler.utils.ObjectShellProfileNode Maven / Gradle / Ivy
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