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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java1688 // <editor-fold defaultstate="collapsed" desc="makeCompoundType">
1696 public Type makeCompoundType(List<Type> bounds, method in class:Types
1726 * Same as {@link #makeCompoundType(List,Type)}, except that the
1729 * makeCompoundType may not be called during a classfile read.
1731 public Type makeCompoundType(List<Type> bounds) { method in class:Types
1734 return makeCompoundType(bounds, supertype);
1738 * A convenience wrapper for {@link #makeCompoundType(List)}; the
1741 * Hence, this version of makeCompoundType may not be called
1744 public Type makeCompoundType(Type bound1, Type bound2) { method in class:Types
1745 return makeCompoundType(Lis
[all...]

Completed in 40 milliseconds