Uses of Interface
org.simpleframework.xml.core.MethodPart
-
Packages that use MethodPart Package Description org.simpleframework.xml.core -
-
Uses of MethodPart in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement MethodPart Modifier and Type Class Description (package private) class
GetPart
TheGetPart
object represents the getter method for a Java Bean property.(package private) class
SetPart
TheSetPart
object represents the setter method for a Java Bean property.Fields in org.simpleframework.xml.core declared as MethodPart Modifier and Type Field Description private MethodPart
MethodContact. get
This is the get method which is used to get the value.private MethodPart
MethodContact. set
This is the set method which is used to set the value.Methods in org.simpleframework.xml.core that return MethodPart Modifier and Type Method Description MethodPart
MethodPartFactory. getInstance(java.lang.reflect.Method method, java.lang.annotation.Annotation[] list)
This is used to acquire aMethodPart
for the method provided.MethodPart
MethodPartFactory. getInstance(java.lang.reflect.Method method, java.lang.annotation.Annotation label, java.lang.annotation.Annotation[] list)
This is used to acquire aMethodPart
for the name and annotation of the provided method.MethodPart
MethodContact. getRead()
This returns the get part of the method.MethodPart
MethodContact. getWrite()
This returns the set part of the method.MethodPart
MethodScanner.PartMap. take(java.lang.String name)
This is used to acquire the method part for the specified method name.Methods in org.simpleframework.xml.core with parameters of type MethodPart Modifier and Type Method Description private void
MethodScanner. build(MethodPart read)
This method is used to create a read only contact.private void
MethodScanner. build(MethodPart read, java.lang.String name)
This method is used to pair the get methods with a matching set method.private void
MethodScanner. build(MethodPart read, MethodPart write)
This method is used to pair the get methods with a matching set method.private void
MethodScanner. insert(MethodPart method, MethodScanner.PartMap map)
This is used to insert a contact to this contact list.private boolean
MethodScanner. isText(MethodPart method)
This is used to determine if theText
annotation has been declared on the method.private void
MethodScanner. process(MethodPart method, MethodScanner.PartMap map)
This is used to determine whether the specified method can be inserted into the givenPartMap
.private void
MethodScanner. remove(MethodPart part, MethodScanner.PartMap map)
This is used to remove the method part from the specified map.private void
MethodScanner. validate(MethodPart write, java.lang.String name)
This is used to validate the object once all the get methods have been matched with a set method.Constructors in org.simpleframework.xml.core with parameters of type MethodPart Constructor Description MethodContact(MethodPart get)
Constructor for theMethodContact
object.MethodContact(MethodPart get, MethodPart set)
Constructor for theMethodContact
object.
-