자산 주석 가져오기

다음을 참조하십시오.

자산 주석은 자산의 상태 히스토리 내에 저장됩니다. RAMAsset.getCurrentStateHistory()를 사용하여 자산의 현재 주석을 가져올 수 있습니다.

//Get the current state history
  RAMStateHistory stateHistory = newAsset.getCurrentStateHistory();

//Get the comments from the state history
  RAMComment[] comments = stateHistory.getComments();

피드백