
ru.yandex.qatools.actions.beans.ObjectFactory Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.08.15 at 02:19:56 PM UTC
//
package ru.yandex.qatools.actions.beans;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the ru.yandex.qatools.actions.beans package.
* An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _Actions_QNAME = new QName("urn:beans.actions.qatools.yandex.ru", "actions");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ru.yandex.qatools.actions.beans
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link ActionSequence }
*
*/
public ActionSequence createActionSequence() {
return new ActionSequence();
}
/**
* Create an instance of {@link NavigateForwardAction }
*
*/
public NavigateForwardAction createNavigateForwardAction() {
return new NavigateForwardAction();
}
/**
* Create an instance of {@link RefreshPageAction }
*
*/
public RefreshPageAction createRefreshPageAction() {
return new RefreshPageAction();
}
/**
* Create an instance of {@link MouseOverAction }
*
*/
public MouseOverAction createMouseOverAction() {
return new MouseOverAction();
}
/**
* Create an instance of {@link AlertAcceptAction }
*
*/
public AlertAcceptAction createAlertAcceptAction() {
return new AlertAcceptAction();
}
/**
* Create an instance of {@link SelectListOptionAction }
*
*/
public SelectListOptionAction createSelectListOptionAction() {
return new SelectListOptionAction();
}
/**
* Create an instance of {@link DeselectCheckBoxAction }
*
*/
public DeselectCheckBoxAction createDeselectCheckBoxAction() {
return new DeselectCheckBoxAction();
}
/**
* Create an instance of {@link ResizeWindowAction }
*
*/
public ResizeWindowAction createResizeWindowAction() {
return new ResizeWindowAction();
}
/**
* Create an instance of {@link SelectRadioButtonAction }
*
*/
public SelectRadioButtonAction createSelectRadioButtonAction() {
return new SelectRadioButtonAction();
}
/**
* Create an instance of {@link ClearAction }
*
*/
public ClearAction createClearAction() {
return new ClearAction();
}
/**
* Create an instance of {@link TypeTextAction }
*
*/
public TypeTextAction createTypeTextAction() {
return new TypeTextAction();
}
/**
* Create an instance of {@link WaitForElementAction }
*
*/
public WaitForElementAction createWaitForElementAction() {
return new WaitForElementAction();
}
/**
* Create an instance of {@link ClickAction }
*
*/
public ClickAction createClickAction() {
return new ClickAction();
}
/**
* Create an instance of {@link FindBy }
*
*/
public FindBy createFindBy() {
return new FindBy();
}
/**
* Create an instance of {@link NavigateBackAction }
*
*/
public NavigateBackAction createNavigateBackAction() {
return new NavigateBackAction();
}
/**
* Create an instance of {@link AlertDismissAction }
*
*/
public AlertDismissAction createAlertDismissAction() {
return new AlertDismissAction();
}
/**
* Create an instance of {@link ExecuteJavaScriptAction }
*
*/
public ExecuteJavaScriptAction createExecuteJavaScriptAction() {
return new ExecuteJavaScriptAction();
}
/**
* Create an instance of {@link LoadPageAction }
*
*/
public LoadPageAction createLoadPageAction() {
return new LoadPageAction();
}
/**
* Create an instance of {@link SelectCheckBoxAction }
*
*/
public SelectCheckBoxAction createSelectCheckBoxAction() {
return new SelectCheckBoxAction();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ActionSequence }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:beans.actions.qatools.yandex.ru", name = "actions")
public JAXBElement createActions(ActionSequence value) {
return new JAXBElement(_Actions_QNAME, ActionSequence.class, null, value);
}
}