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

com.frameworkset.platform.framework.ItemQueue Maven / Gradle / Ivy

package com.frameworkset.platform.framework;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

/**
 * 

Title:

* *

Description:

* *

Copyright: Copyright (c) 2006

* *

Company: 三一集团

* * @author biaoping.yin * @version 1.0 */ public class ItemQueue { private List items = new ArrayList(); public void addItem(Item item) { this.items.add(item); } public Item getItem(int i) { return (Item)this.items.get(i); } public int size() { return this.items.size(); } public Iterator iterator() { return this.items.iterator(); } public void clear() { this.items.clear(); } public List getList() { return this.items; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy