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

generated.MethodMatcherType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.09.30 at 11:45:12 AM EDT 
//


package generated;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for MethodMatcherType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MethodMatcherType">
 *   <complexContent>
 *     <extension base="{}MatcherType">
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="params" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="returns" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MethodMatcherType") public class MethodMatcherType extends MatcherType { @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "params") protected String params; @XmlAttribute(name = "returns") protected String returns; @XmlAttribute(name = "role") protected String role; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the params property. * * @return * possible object is * {@link String } * */ public String getParams() { return params; } /** * Sets the value of the params property. * * @param value * allowed object is * {@link String } * */ public void setParams(String value) { this.params = value; } /** * Gets the value of the returns property. * * @return * possible object is * {@link String } * */ public String getReturns() { return returns; } /** * Sets the value of the returns property. * * @param value * allowed object is * {@link String } * */ public void setReturns(String value) { this.returns = value; } /** * Gets the value of the role property. * * @return * possible object is * {@link String } * */ public String getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is * {@link String } * */ public void setRole(String value) { this.role = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy