Class XslTransformationResourcesType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.XslTransformationResourcesType
-
public class XslTransformationResourcesType extends Object
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p383362_="https://jakarta.ee/xml/ns/jaxb" xmlns:p837822_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">This element defines all resources necessary for the transformation. (In the case of XSLT, for example, the XSL stylesheet itself and - if necessary - additional *.css, *.js files or similar). Any number of resources can be passed, but at least one must be present for the transformation to succeed. The individual resources are passed via the individual <code><file></code> elements, which can occur multiple times. </p>Java class for XslTransformationResourcesType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="XslTransformationResourcesType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="file" type="{http://schema.webpdf.de/1.0/operation}XslTransformationFileType"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<XslTransformationFileType>file
-
Constructor Summary
Constructors Constructor Description XslTransformationResourcesType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<XslTransformationFileType>getFile()Gets the value of the file property.booleanisSetFile()voidunsetFile()
-
-
-
Field Detail
-
file
protected List<XslTransformationFileType> file
-
-
Method Detail
-
getFile
public List<XslTransformationFileType> getFile()
Gets the value of the file property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the file property.For example, to add a new item, do as follows:
getFile().add(newItem);Objects of the following type(s) are allowed in the list
XslTransformationFileType- Returns:
- The value of the file property.
-
isSetFile
public boolean isSetFile()
-
unsetFile
public void unsetFile()
-
-