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

net.winroad.wrdoclet.doc.Doc Maven / Gradle / Ivy

The newest version!
package net.winroad.wrdoclet.doc;

import java.util.LinkedList;
import java.util.List;

public class Doc {
	private String tag;
	private List APIs = new LinkedList();

	public String getTag() {
		return tag;
	}

	public void setTag(String tag) {
		this.tag = tag;
	}

	public List getAPIs() {
		return APIs;
	}

	public void setAPIs(List aPIs) {
		APIs = aPIs;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy