/** * Returns the @attribute_name@ * * @return The @attribute_name@ */ public @attribute_type@ get@attribute_name@() { return _@attribute_variable@; } /** * Sets the @attribute_name@ * * @param @attribute_variable@ The @attribute_name@ */ public void set@attribute_name@( @attribute_type@ @attribute_variable@ ) { _@attribute_variable@ = @attribute_variable@; }