0 Replies Latest reply on Jul 25, 2007 4:36 AM by thhal

    outject and transient

    thhal

      Assume the following:

      public class X implements ISerializable
      {
      @Out
      private String name;

      ...
      }

      What happens when I serialize this? Will the @Out annotation make the name transient? I think it should since the name is not really part of the state of X.

      - thomas