Por que javac se queixa de genéricos não relacionados aos argumentos de tipo da classe? [duplicado]

Esta pergunta já tem uma resposta aqui:

Métodos genéricos Java em classes genéricas 6 respostasO que é um tipo bruto e por que não devemos usá-lo? 14 respostas

Por favor, leia os comentários no código em ordem, os detalhes da pergunta estão lá.
Por que essa diferença está acontecendo?
Por favor, cite o JLS, se possível.

import java.util.*;

/**
 * Suppose I have a generic class
 * @param <T> with a type argument.
 */
class Generic<T> {
    // Apart from using T normally,
    T paramMethod() { return null; }
    // the class' interface also contains Generic Java Collections
    // which are not using T, but unrelated types.
    List<Integer> unrelatedMethod() { return null; }
}

@SuppressWarnings("unused")
public class Test {
    // If I use the class properly (with qualified type arguments)
    void properUsage() {
        Generic<String> g = new Generic<String>();

        // everything works fine.
        String s = g.paramMethod();
        List<Integer> pos = g.unrelatedMethod();

        // OK error: incompatible types: List<String> := List<Integer>
        List<String> thisShouldErrorCompile = g.unrelatedMethod();
    }

    // But when I use the raw type, *ALL* the generics support is gone, even the Collections'.
    void rawUsage() {
        // Using Generic<?> as the type turns fixes the warnings below.
        Generic g = new Generic();

        // OK error: incompatible types: String := Object
        String s = g.paramMethod();

        // WTF warning: unchecked conversion: List<Integer> := raw List
        List<Integer> pos = g.unrelatedMethod();

        // WTF warning: unchecked conversion: List<String> := raw List
        List<String> thisShouldErrorCompile = g.unrelatedMethod();
    }
}
Nota

Originalmente, encontrei isso no IntelliJ IDEA, mas acho que o compilador é compatível com javac porque, quando compilei o código acima com o seguinte, ele forneceu os mesmos erros / avisos.

$ javac -version
javac 1.7.0_05
$ javac Test.java -Xlint:unchecked
...
$ javac Test.java -Xlint:unchecked -source 1.5 -target 1.5
...

questionAnswers(1)

yourAnswerToTheQuestion