# Interface: com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICommentManager

An interface for simple long\-based comment management used by some engine components.

## Method: addComment
- parameter: `address`, type: `long`
- parameter: `value`, type: `java.lang.String`
- return type: `boolean`

Description: Add a comment.
parameter: address: comment address
parameter: value: comment text
return: true on change

## Method: getComment
- parameter: `address`, type: `long`
- return type: `java.lang.String`

Description: Retrieve a comment.
parameter: address: comment address
return: comment, or null

## Method: getComments
- return type: `java.util.Map<java.lang.Long,java.lang.String>`

Description: Get all comments.
return: comments by address

## Method: setComment
- parameter: `address`, type: `long`
- parameter: `value`, type: `java.lang.String`
- return type: `boolean`

Description: Set a comment.
parameter: address: comment address
parameter: value: comment text
return: true on change

