jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/JExpression.java
changeset 33547 e4c76ac38b12
parent 32795 5a5710ee05a0
equal deleted inserted replaced
33390:d131f4b8433a 33547:e4c76ac38b12
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    95      * Returns "[this]<<[right]"
    95      * Returns "[this]<<[right]"
    96      */
    96      */
    97     JExpression shl(JExpression right);
    97     JExpression shl(JExpression right);
    98 
    98 
    99     /**
    99     /**
   100      * Returns "[this]>>[right]"
   100      * Returns "{@code [this]>>[right]}"
   101      */
   101      */
   102     JExpression shr(JExpression right);
   102     JExpression shr(JExpression right);
   103 
   103 
   104     /**
   104     /**
   105      * Returns "[this]>>>[right]"
   105      * Returns "{@code [this]>>>[right]}"
   106      */
   106      */
   107     JExpression shrz(JExpression right);
   107     JExpression shrz(JExpression right);
   108 
   108 
   109     /** Bit-wise AND '&'. */
   109     /** Bit-wise AND '&'. */
   110     JExpression band(JExpression right);
   110     JExpression band(JExpression right);