
com.aggrepoint.utils.linkedtable.ColumnHead Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aputils Show documentation
Show all versions of aputils Show documentation
Common utilities used by both Dao and Winlet project
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