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

com.aggrepoint.utils.linkedtable.RowHead Maven / Gradle / Ivy

The newest version!
package com.aggrepoint.utils.linkedtable;

public class RowHead extends PropObject{
	RowHead m_nextHead;
	Node m_firstNode;
	Node m_lastNode;
	TRow m_value;

	public RowHead(TRow header) {
		m_value = header;
	}

	public RowHead find(TRow header) {
		if (m_value.equals(header))
			return this;
		if (m_nextHead == null)
			return null;
		return m_nextHead.find(header);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy