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

com.scudata.dm.LinkEntry Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

The newest version!
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