Skip to main content

FieldVisitor

Trait FieldVisitor 

Source
pub trait FieldVisitor {
    // Provided method
    fn visit_end(&mut self) { ... }
}
Expand description

A visitor to visit a Java field.

The methods of this trait must be called in the following order: visit_end.

Provided Methods§

Source

fn visit_end(&mut self)

Visits the end of the field.

This method, which is the last one to be called, is used to inform the visitor that all the annotations and attributes of the field have been visited.

Implementors§