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) classGetPartTheGetPartobject represents the getter method for a Java Bean property.(package private) classSetPartTheSetPartobject represents the setter method for a Java Bean property.Fields in org.simpleframework.xml.core declared as MethodPart Modifier and Type Field Description private MethodPartMethodContact. getThis is the get method which is used to get the value.private MethodPartMethodContact. setThis 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 MethodPartMethodPartFactory. getInstance(java.lang.reflect.Method method, java.lang.annotation.Annotation[] list)This is used to acquire aMethodPartfor the method provided.MethodPartMethodPartFactory. getInstance(java.lang.reflect.Method method, java.lang.annotation.Annotation label, java.lang.annotation.Annotation[] list)This is used to acquire aMethodPartfor the name and annotation of the provided method.MethodPartMethodContact. getRead()This returns the get part of the method.MethodPartMethodContact. getWrite()This returns the set part of the method.MethodPartMethodScanner.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 voidMethodScanner. build(MethodPart read)This method is used to create a read only contact.private voidMethodScanner. build(MethodPart read, java.lang.String name)This method is used to pair the get methods with a matching set method.private voidMethodScanner. build(MethodPart read, MethodPart write)This method is used to pair the get methods with a matching set method.private voidMethodScanner. insert(MethodPart method, MethodScanner.PartMap map)This is used to insert a contact to this contact list.private booleanMethodScanner. isText(MethodPart method)This is used to determine if theTextannotation has been declared on the method.private voidMethodScanner. process(MethodPart method, MethodScanner.PartMap map)This is used to determine whether the specified method can be inserted into the givenPartMap.private voidMethodScanner. remove(MethodPart part, MethodScanner.PartMap map)This is used to remove the method part from the specified map.private voidMethodScanner. 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 theMethodContactobject.MethodContact(MethodPart get, MethodPart set)Constructor for theMethodContactobject.
-