Obj-C Attribute - reverse code

Hi to all,
I’m an iPhone developer and I’m new to VP for UML.
I have tried to reverse code of some simple classes. Everything works fine rather then the attributes, and the method parameters comments.
I have used the template of a dummy VP generated class to optimize the .h file formatting, but the ‘reverse model’ still does not work.
Follows an header for which VP is not able to reverse attributes and method parameters comments.

Thanks.




#import <Foundation/Foundation.h>
#import "ResolveMultiConnection.h"

@class passerelleViewController;

/**
 * Enum per gli stati dell'oggetto
 */
typedef enum {
    //Connected = 0,
	WaitConnection = 1,
	NoConnection = 2,
    ReadyToWrite = 3,
    WaitChangeBridge = 4,
    WaitForKeyResponse = 5
} ConnectionStatus;

@protocol ConnectionControllerDelegate <NSObject>
@required
- (void)commandReceived:(NSString *)command;
- (void)connectionError:(NSString *)error;
- (void)connectionStatus:(ConnectionStatus) status;
@end


@interface ConnectionController : NSObject <ResolveMultiConnectionDelegate, NSStreamDelegate> {
    /**
     * comment 1
     */
    @public NSString* password;
    
    /**
     * comment 2
     */
    @public ConnectionStatus status;
    
    /**
     * comment 3
     */
    @public ResolveMultiConnection* rmc;
    
    /**
     * delegatecomment
     */
    @public passerelleViewController* delegate;
    
    /**
     * Stream comment
     */
    @public NSOutputStream* outStream;
    
    /**
     * Timer comment
     */
    @public NSTimer* timer;
}

@property (nonatomic, retain) NSString* password;
@property (nonatomic) ConnectionStatus status;
@property (nonatomic, retain) ResolveMultiConnection* rmc;
@property (nonatomic, assign) passerelleViewController* delegate;
@property (nonatomic, assign) NSOutputStream* outStream;
@property (nonatomic, retain) NSTimer* timer;


/**
 * method comment
 * parameter aDelegate Myparameter comment!
 */
-(ConnectionController *)initWithDelegate:(passerelleViewController *)aDelegate;

@end

 
 
 


Hello Roberto,

Thank you for your message. I’ve tried to reverse your source file with Instant Reverse and it seems working fine. May I know how you perform reverse engineering?

Best regards,
Rain