< prev index next >

src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/CompoundType.java

Print this page

        

*** 143,161 **** return isCORBAUserException; } /** * Return true if this type implements ! * isIDLEntity() && isException(). */ public boolean isIDLEntityException () { return isIDLEntity() && isException(); } /** ! * Return true if isIDLEntity() && !isValueBase() * && !isAbstractBase() && !isCORBAObject() ! * && !isIDLEntityException(). */ public boolean isBoxed () { return (isIDLEntity() && !isValueBase() && !isAbstractBase() && !isCORBAObject() && !isIDLEntityException()); --- 143,161 ---- return isCORBAUserException; } /** * Return true if this type implements ! * {@code isIDLEntity() && isException()}. */ public boolean isIDLEntityException () { return isIDLEntity() && isException(); } /** ! * Return true if {@code isIDLEntity() && !isValueBase() * && !isAbstractBase() && !isCORBAObject() ! * && !isIDLEntityException()}. */ public boolean isBoxed () { return (isIDLEntity() && !isValueBase() && !isAbstractBase() && !isCORBAObject() && !isIDLEntityException());
*** 1982,1992 **** public boolean isConstructor () { return memberDef.isConstructor(); } /** ! * Return true if this is NOT a constructor && is not * an attribute. */ public boolean isNormalMethod () { return (!memberDef.isConstructor()) && attributeKind == ATTRIBUTE_NONE; } --- 1982,1992 ---- public boolean isConstructor () { return memberDef.isConstructor(); } /** ! * Return true if this is NOT a constructor {@code &&} is not * an attribute. */ public boolean isNormalMethod () { return (!memberDef.isConstructor()) && attributeKind == ATTRIBUTE_NONE; }
< prev index next >