< prev index next >

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

Print this page

        

@@ -143,19 +143,19 @@
         return isCORBAUserException;
     }
 
     /**
      * Return true if this type implements
-     * isIDLEntity() && isException().
+     * {@code isIDLEntity() && isException()}.
      */
     public boolean isIDLEntityException () {
         return isIDLEntity() && isException();
     }
     /**
-     * Return true if isIDLEntity() && !isValueBase()
+     * Return true if {@code isIDLEntity() && !isValueBase()
      * && !isAbstractBase() && !isCORBAObject()
-     * && !isIDLEntityException().
+     * && !isIDLEntityException()}.
      */
     public boolean isBoxed () {
         return (isIDLEntity() && !isValueBase() &&
                 !isAbstractBase() && !isCORBAObject() &&
                 !isIDLEntityException());

@@ -1982,11 +1982,11 @@
         public boolean isConstructor () {
             return memberDef.isConstructor();
         }
 
         /**
-         * Return true if this is NOT a constructor && is not
+         * 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 >