|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Property<T>
This interface defines the contract for the Property
xsd type
Method Summary | |
---|---|
Property<T> |
_default(String _default)
Sets the default attribute |
Array<Property<T>> |
createArray()
Creates a new Array element |
Call<Property<T>> |
createCall()
Creates a new Call element |
Get<Property<T>> |
createGet()
Creates a new Get element |
Map<Property<T>> |
createMap()
Creates a new Map element |
New<Property<T>> |
createNew()
Creates a new New element |
Property<Property<T>> |
createProperty()
Creates a new Property element |
Put<Property<T>> |
createPut()
Creates a new Put element |
Ref<Property<T>> |
createRef()
Creates a new Ref element |
Set<Property<T>> |
createSet()
Creates a new Set element |
String |
get_Default()
Returns the default attribute |
List<Array<Property<T>>> |
getAllArray()
Returns all Array elements |
List<Call<Property<T>>> |
getAllCall()
Returns all Call elements |
List<Get<Property<T>>> |
getAllGet()
Returns all Get elements |
List<Map<Property<T>>> |
getAllMap()
Returns all Map elements |
List<New<Property<T>>> |
getAllNew()
Returns all New elements |
List<Property<Property<T>>> |
getAllProperty()
Returns all Property elements |
List<Put<Property<T>>> |
getAllPut()
Returns all Put elements |
List<Ref<Property<T>>> |
getAllRef()
Returns all Ref elements |
List<Set<Property<T>>> |
getAllSet()
Returns all Set elements |
String |
getId()
Returns the id attribute |
String |
getName()
Returns the name attribute |
Array<Property<T>> |
getOrCreateArray()
If not already created, a new Array element will be created and returned. |
Call<Property<T>> |
getOrCreateCall()
If not already created, a new Call element will be created and returned. |
Get<Property<T>> |
getOrCreateGet()
If not already created, a new Get element will be created and returned. |
Map<Property<T>> |
getOrCreateMap()
If not already created, a new Map element will be created and returned. |
New<Property<T>> |
getOrCreateNew()
If not already created, a new New element will be created and returned. |
Property<Property<T>> |
getOrCreateProperty()
If not already created, a new Property element will be created and returned. |
Put<Property<T>> |
getOrCreatePut()
If not already created, a new Put element will be created and returned. |
Ref<Property<T>> |
getOrCreateRef()
If not already created, a new Ref element will be created and returned. |
Set<Property<T>> |
getOrCreateSet()
If not already created, a new Set element will be created and returned. |
Property<T> |
id(String id)
Sets the id attribute |
Property<T> |
name(String name)
Sets the name attribute |
Property<T> |
remove_Default()
Removes the default attribute |
Property<T> |
removeAllArray()
Removes all Array elements |
Property<T> |
removeAllCall()
Removes all Call elements |
Property<T> |
removeAllGet()
Removes all Get elements |
Property<T> |
removeAllMap()
Removes all Map elements |
Property<T> |
removeAllNew()
Removes all New elements |
Property<T> |
removeAllProperty()
Removes all Property elements |
Property<T> |
removeAllPut()
Removes all Put elements |
Property<T> |
removeAllRef()
Removes all Ref elements |
Property<T> |
removeAllSet()
Removes all Set elements |
Property<T> |
removeId()
Removes the id attribute |
Property<T> |
removeName()
Removes the name attribute |
Methods inherited from interface org.jboss.shrinkwrap.descriptor.api.Child |
---|
up |
Method Detail |
---|
Ref<Property<T>> getOrCreateRef()
Ref
element will be created and returned.
Otherwise, the first existing Ref
element will be returned.
Ref
Ref<Property<T>> createRef()
Ref
element
Ref>
List<Ref<Property<T>>> getAllRef()
Ref
elements
Ref
Property<T> removeAllRef()
Ref
elements
Ref>
Map<Property<T>> getOrCreateMap()
Map
element will be created and returned.
Otherwise, the first existing Map
element will be returned.
Map
Map<Property<T>> createMap()
Map
element
Map>
List<Map<Property<T>>> getAllMap()
Map
elements
Map
Property<T> removeAllMap()
Map
elements
Map>
Call<Property<T>> getOrCreateCall()
Call
element will be created and returned.
Otherwise, the first existing Call
element will be returned.
Call
Call<Property<T>> createCall()
Call
element
Call>
List<Call<Property<T>>> getAllCall()
Call
elements
Call
Property<T> removeAllCall()
Call
elements
Call>
Put<Property<T>> getOrCreatePut()
Put
element will be created and returned.
Otherwise, the first existing Put
element will be returned.
Put
Put<Property<T>> createPut()
Put
element
Put>
List<Put<Property<T>>> getAllPut()
Put
elements
Put
Property<T> removeAllPut()
Put
elements
Put>
Array<Property<T>> getOrCreateArray()
Array
element will be created and returned.
Otherwise, the first existing Array
element will be returned.
Array
Array<Property<T>> createArray()
Array
element
Array>
List<Array<Property<T>>> getAllArray()
Array
elements
Array
Property<T> removeAllArray()
Array
elements
Array>
New<Property<T>> getOrCreateNew()
New
element will be created and returned.
Otherwise, the first existing New
element will be returned.
New
New<Property<T>> createNew()
New
element
New>
List<New<Property<T>>> getAllNew()
New
elements
New
Property<T> removeAllNew()
New
elements
New>
Property<Property<T>> getOrCreateProperty()
Property
element will be created and returned.
Otherwise, the first existing Property
element will be returned.
Property
Property<Property<T>> createProperty()
Property
element
Property>
List<Property<Property<T>>> getAllProperty()
Property
elements
Property
Property<T> removeAllProperty()
Property
elements
Property>
Get<Property<T>> getOrCreateGet()
Get
element will be created and returned.
Otherwise, the first existing Get
element will be returned.
Get
Get<Property<T>> createGet()
Get
element
Get>
List<Get<Property<T>>> getAllGet()
Get
elements
Get
Property<T> removeAllGet()
Get
elements
Get>
Set<Property<T>> getOrCreateSet()
Set
element will be created and returned.
Otherwise, the first existing Set
element will be returned.
Set
Set<Property<T>> createSet()
Set
element
Set>
List<Set<Property<T>>> getAllSet()
Set
elements
Set
Property<T> removeAllSet()
Set
elements
Set>
Property<T> name(String name)
name
attribute
name
- the value for the attribute name
Property
String getName()
name
attribute
name
Property<T> removeName()
name
attribute
Property
Property<T> _default(String _default)
default
attribute
_default
- the value for the attribute default
Property
String get_Default()
default
attribute
default
Property<T> remove_Default()
default
attribute
Property
Property<T> id(String id)
id
attribute
id
- the value for the attribute id
Property
String getId()
id
attribute
id
Property<T> removeId()
id
attribute
Property
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |