I have a method
public boolean findANDsetText (String Description, String ... extra ) {
inside I want to call another method and pass it extras
but I want to add new element (Description) to extras.
object_for_text = getObject(find_arguments,extra);
How can I do that in java? What would the code look like?
I tired to accommodate code from this question but couldn't make it work.