/******************************************************************************* * Copyright (c) 2017 BREDEX GmbH. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * BREDEX GmbH - initial API and implementation and/or initial documentation *******************************************************************************/ package org.eclipse.jubula.client.core.exporter.junitmodel; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * generated */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "m_content" }) @XmlRootElement(name = "skipped") public class Skipped { /** * */ @XmlValue private String m_content; /** * */ @XmlAttribute(name = "type") private String m_type; /** * */ @XmlAttribute(name = "message") private String m_message; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return m_content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.m_content = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return m_type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.m_type = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return m_message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.m_message = value; } }