List of usage examples for java.util LinkedList subclass-usage
From source file org.mule.modules.apifortress.responses.TestExecutionResponses.java
/**
* Represents the result of an automatch execution
* @author Simone Pezzano - simone@apifortress.com
*
*/
@JsonAutoDetect
From source file edu.cornell.mannlib.vitro.webapp.beans.VClassGroup.java
public class VClassGroup extends LinkedList<VClass> implements Comparable<VClassGroup> { private static final Log log = LogFactory.getLog(VClassGroup.class.getName()); private String URI = null; private String namespace = null;
From source file GuitarManufacturerList.java
class GuitarManufacturerList extends LinkedList<String> { public GuitarManufacturerList() { super(); }
From source file com.okta.sdk.models.links.Links.java
@JsonDeserialize(using = JsonDeserializer.None.class) // use default public class Links extends LinkedList<Link> implements LinksUnion { public Links() { super(); }
From source file org.jfrog.build.client.ArtifactSpecs.java
/** * A map of artifact specs per configuration * * @author Yoav Landman */ public class ArtifactSpecs extends LinkedList<ArtifactSpec> {
From source file org.jfrog.build.extractor.clientConfiguration.ArtifactSpecs.java
/** * A map of artifact specs per configuration * * @author Yoav Landman */ public class ArtifactSpecs extends LinkedList<ArtifactSpec> {
From source file charva.awt.SyncQueue.java
/** * This class is used to coalesce several "sync" events together, * if possible. This speeds up redrawing. * The queue also handles GarbageCollectionEvents. */ class SyncQueue extends java.util.LinkedList {
From source file ch.sebastienzurfluh.swissmuseumguides.contentprovider.model.io.structure.TableAbstract.java
/**
* Represents a complete table, with row representations.
*
* @author Sebastien Zurfluh
*
* @param <R>
From source file net.xy.jcms.shared.types.LongList.java
/**
* simple typesation of an longlist
*
* @author xyan
*
*/
From source file org.archive.queue.MemQueue.java
/** An in-memory implementation of a {@link Queue}. * * @author Gordon Mohr * */ public class MemQueue<T> extends LinkedList<T> implements Queue<T> {