com.aspire.nm.component.commonUtil.struct.producerconsumerqueue.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonUtil Show documentation
Show all versions of commonUtil Show documentation
commonUtil is a dajiangnan's java utils
package com.aspire.nm.component.commonUtil.struct.producerconsumerqueue;
public class Element
{
private Object obj;
private Element next = null;
public Object getValue()
{
return this.obj;
}
public void setNext(Element element)
{
this.next = element;
}
public Element getNext()
{
return this.next;
}
public Element(Object obj)
{
this.obj = obj;
}
}