CS 111 - 3/12/15 return values from a method First line of our methods has been: public static void methodName ( parameterList ) Will now become public static Picture methodName ( parameterList ) { Picture result; // code to determine the data for result return result; } The method call will now change from: methodName ( paramInformation ); to Picture p3; p3 = methoedName ( paramInformation );