1 Reply Latest reply on Nov 11, 2005 11:56 PM by gavin.king

    @Begin/@BeginIf

    patrick_ibg

      Seems to me that @BeginIf can be folded as part of the @Begin annotation:

      @Begin // normal Begin
      public String method() {
      }

      @Begin (ifoutcome = {"foo", "bar"}) // BeginIf
      public String method () {
      }

      Same goes for @End/@EndIf.