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

com.frameworkset.platform.resource.UNProtectedResourceQueue Maven / Gradle / Ivy

package com.frameworkset.platform.resource;

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

/**
 * 

Title:

* *

Description:

* *

Copyright: Copyright (c) 2006

* *

Company: bbossgroups

* * @author biaoping.yin * @version 1.0 */ public class UNProtectedResourceQueue implements Serializable{ private List queue = new ArrayList(); public static void main(String[] args) { UNProtectedResourceQueue unprotectedresourcequeue = new UNProtectedResourceQueue(); } public void addUNProtectedResource(UNProtectedResource unProtectedResource) { this.queue.add(unProtectedResource); } public UNProtectedResource getUNProtectedResource(int i) { return (UNProtectedResource)this.queue.get(i); } public int size() { return this.queue.size(); } public Iterator iterator() { return queue.iterator(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy