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

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

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

public class ColumnHead extends PropObject {
	ColumnHead m_nextHead;
	Node m_firstNode;
	Node m_lastNode;
	TColumn m_value;

	public ColumnHead(TColumn header) {
		m_value = header;
	}

	public ColumnHead find(TColumn 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