public class Converter extends Object
@Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface Converter { boolean autoApply() default false; }
<p>Java class for converter complex type.
<p>The following schema fragment specifies the expected content contained within this class.
<pre> <complexType name="converter"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="auto-apply" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType> </pre>
| Modifier and Type | Field and Description |
|---|---|
protected Boolean |
autoApply |
protected String |
clazz |
protected String |
description |
| Constructor and Description |
|---|
Converter() |
| Modifier and Type | Method and Description |
|---|---|
String |
getClazz()
Gets the value of the clazz property.
|
String |
getDescription()
Gets the value of the description property.
|
Boolean |
isAutoApply()
Gets the value of the autoApply property.
|
void |
setAutoApply(Boolean value)
Sets the value of the autoApply property.
|
void |
setClazz(String value)
Sets the value of the clazz property.
|
void |
setDescription(String value)
Sets the value of the description property.
|
protected String description
protected String clazz
protected Boolean autoApply
public String getDescription()
Gets the value of the description property.
Stringpublic void setDescription(String value)
Sets the value of the description property.
value - allowed object is
Stringpublic String getClazz()
Gets the value of the clazz property.
Stringpublic void setClazz(String value)
Sets the value of the clazz property.
value - allowed object is
Stringpublic Boolean isAutoApply()
Gets the value of the autoApply property.
BooleanCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.