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

org.jvnet.jaxb.annox.reader.resourced.NMethod Maven / Gradle / Ivy

The newest version!
package org.jvnet.jaxb.annox.reader.resourced;

import java.util.List;

import jakarta.xml.bind.annotation.XmlAnyElement;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;

@XmlRootElement(name = "method")
@XmlType(name = "methodType")
@XmlSeeAlso( { NParameter.class })
public class NMethod {
	@XmlAttribute
	public String name;
	@XmlAttribute
	public String arguments;
	@XmlAnyElement(lax = true)
	public List content;

}