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

com.aspire.nm.component.commonUtil.struct.producerconsumerqueue.Element Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy