cn.mapway.document.v2.module.Urls Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapway-doc-ui Show documentation
Show all versions of mapway-doc-ui Show documentation
auto gen doc from api with ui
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();
}
}