CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    Jan 2009
    Posts
    8

    why XMLEncoder is not encoding all public properties?

    I have the following properties (both getters and setters are public)
    String fieldID = null;
    String validationCode = null;
    String vaidationMessage = null;
    String value = null;
    boolean changeIndicator = true;

    But when I encode, it is not encoding validationMessage and changeIndicator. I am not directly encoding this object, but this is part other object and I am trying to encode that object.

    Edit: These are not being set through constructor.. I have another method which sets 2, 3rd and 4th parameters
    Last edited by getstarted; January 9th, 2009 at 06:10 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured