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

cn.mapway.document.v2.module.Urls Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.mapway.document.v2.module;

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


// TODO: Auto-generated Javadoc

/**
 * Url 列表,并提供列表的操作 转换,解析等操作.
 *
 * @author zhangjianshe
 */
public class Urls {

    /**
     * The items.
     */
    List items;

    /**
     * Instantiates a new urls.
     */
    public Urls() {
		items=new ArrayList();
	}

    /**
     * Adds the.
     *
     * @param item the item
     */
    public void add(UrlItem item)
	{
		items.add(item);
	}

    /**
     * Clear.
     */
    public void clear()
	{
		items.clear();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy