Searched defs:isCastable (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java942 // <editor-fold defaultstate="collapsed" desc="isCastable">
943 public boolean isCastable(Type t, Type s) { method in class:Types
944 return isCastable(t, s, Warner.noWarnings);
952 public boolean isCastable(Type t, Type s, Warner warn) { method in class:Types
966 return isCastable.visit(t,s);
971 return isCastable.visit(t,s);
975 private TypeRelation isCastable = new TypeRelation() { field in class:Types
998 return isCastable(upperBound(t), s, warnStack.head);
1007 if (isCastable(t, s.getUpperBound(), Warner.noWarnings)) {
1116 if (isCastable(
[all...]

Completed in 208 milliseconds