The help for EdgeLabels states:

However:
CompleteGraph[4,
EdgeWeight -> Range@6,
VertexShapeFunction -> "Name",
EdgeLabels -> "EdgeWeight"]
Results in:

So, no Edge Labels ... I guess it is a bug.
I used a nasty construct like:
adj = {{\[Infinity], 1, 1, 1, 1}, {1, \[Infinity], 2, 2, 2},
{1, 2, \[Infinity], 2, 2}, {1, 2, 2, \[Infinity], 2},
{1, 2, 2, 2, \[Infinity]}};
WeightedAdjacencyGraph[adj,
VertexShapeFunction -> "Name",
EdgeLabels ->
MapThread[Rule,{EdgeList@#,AbsoluteOptions[#, EdgeWeight]/.{_ -> x_}-> x}],
GraphHighlight -> FindEdgeCover[#]]
&@ WeightedAdjacencyGraph[adj]

Better ideas?



Graphunfortunately still has some serious problems, be cautious and verify verify verify ...Graph[]objects occasionally end up in a corrupted state causing some functions to either give a wrong result or crash. I've encountered problems with removing vertices and isomorphism testing in particular. – Szabolcs Sep 12 '11 at 13:01EdgeWeightsrather thanEdgeLabels. (You may have already realized that. YourMapThreadessentially generates weights on-the-fly.) – David Carraher Sep 14 '11 at 1:16