*
* @pre convert_me != null
* @pre factory != null
*/
static public Transportable convert(Transportable convert_me, TransportableFactory factory) {
Transportable return_me = factory.makeTransportable();
convert(convert_me, return_me);
return return_me;
}