Package org.jboss.as.controller.xml
Interface XMLParticle<RC,WC>
-
- Type Parameters:
RC- the reader contextWC- the writer content
- All Superinterfaces:
Feature,XMLComponent<RC,WC>
- All Known Subinterfaces:
AttributeDefinitionXMLElement,NamedResourceRegistrationXMLChoice,NamedResourceRegistrationXMLElement,ResourceRegistrationXMLElement,ResourceXMLAll,ResourceXMLChoice,ResourceXMLContainer,ResourceXMLElement,ResourceXMLElementGroup,ResourceXMLParticleGroup,ResourceXMLSequence,SingletonResourceRegistrationXMLChoice,SingletonResourceRegistrationXMLElement,SubsystemResourceRegistrationXMLElement,XMLAll<RC,WC>,XMLChoice<RC,WC>,XMLContainer<RC,WC>,XMLElement<RC,WC>,XMLElementGroup<RC,WC>,XMLParticleGroup<RC,WC>,XMLSequence<RC,WC>
- All Known Implementing Classes:
AttributeDefinitionXMLElement.DefaultAttributeDefinitionXMLElement,NamedResourceRegistrationXMLChoice.DefaultResourceRegistrationXMLChoice,NamedResourceRegistrationXMLElement.DefaultNamedResourceRegistrationXMLElement,ResourceRegistrationXMLElement.DefaultResourceRegistrationXMLElement,ResourceXMLAll.DefaultResourceXMLAll,ResourceXMLChoice.DefaultResourceContentXMLChoice,ResourceXMLElement.DefaultResourceXMLElement,ResourceXMLSequence.DefaultResourceXMLSequence,SingletonResourceRegistrationXMLChoice.DefaultSingletonResourceRegistrationXMLChoice,SingletonResourceRegistrationXMLElement.DefaultSingletonResourceRegistrationXMLElement,SubsystemResourceRegistrationXMLElement.DefaultSubsystemResourceRegistrationXMLElement,XMLAll.DefaultXMLAll,XMLChoice.DefaultXMLChoice,XMLChoice.DefaultXMLElementChoice,XMLElement.DefaultXMLElement,XMLElementGroup.DefaultXMLElementGroup,XMLParticle.DefaultXMLParticle,XMLParticleGroup.DefaultXMLParticleGroup,XMLSequence.DefaultXMLSequence
public interface XMLParticle<RC,WC> extends XMLComponent<RC,WC>
Encapsulates an XML particle.- Author:
- Paul Ferraro
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classXMLParticle.AbstractBuilder<RC,WC,T extends XMLParticle<RC,WC>,B extends XMLParticle.Builder<RC,WC,T,B>>static interfaceXMLParticle.Builder<RC,WC,T extends XMLParticle<RC,WC>,B extends XMLParticle.Builder<RC,WC,T,B>>static classXMLParticle.DefaultXMLParticle<RC,WC>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XMLCardinalitygetCardinality()Returns the cardinality of this XML particle.XMLElementReader<RC>getReader()Returns the reader of this XML component.-
Methods inherited from interface org.jboss.as.controller.Feature
getStability
-
Methods inherited from interface org.jboss.as.controller.xml.XMLComponent
getWriter
-
-
-
-
Method Detail
-
getReader
XMLElementReader<RC> getReader()
Description copied from interface:XMLComponentReturns the reader of this XML component.- Specified by:
getReaderin interfaceXMLComponent<RC,WC>- Returns:
- the reader of this XML component.
-
getCardinality
XMLCardinality getCardinality()
Returns the cardinality of this XML particle.- Returns:
- the cardinality of this XML particle.
-
-