com.scudata.dm.LinkEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.dm;
/**
* ??????Ŀ
* @author WangXiaoJun
*
* @param
*/
public class LinkEntry {
private E element;
private LinkEntry next;
/**
* ??????????Ŀ
* @param element Ԫ??ֵ
*/
public LinkEntry(E element) {
this.element = element;
}
/**
* ??????????Ŀ
* @param element Ԫ??ֵ
* @param next ??һ????????Ŀ
*/
public LinkEntry(E element, LinkEntry next) {
this.element = element;
this.next = next;
}
/**
* ȡԪ??ֵ
* @return
*/
public E getElement() {
return element;
}
/**
* ȡ??һ????Ŀ
* @return
*/
public LinkEntry getNext() {
return next;
}
/**
* ??????һ????Ŀ
* @param next
*/
public void setNext(LinkEntry next) {
this.next = next;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy