Java SDK and Eclipse plugin for simulator.
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / serviceprovider / IResourceModelChangedListener.java
index c8b2174..744116b 100644 (file)
  * limitations under the License.
  */
 
-/**
- * This file provides an interface for handling the resource model
- * related notifications.
- */
 package org.oic.simulator.serviceprovider;
 
+import org.oic.simulator.SimulatorResourceModel;
+
 /**
  * Interface for receiving notifications whenever there is a change in the
  * resource model.
@@ -32,7 +30,7 @@ public interface IResourceModelChangedListener {
      * @param resourceURI
      *            URI of resource.
      * @param resourceModel
-     *            Resource model of the resource.
+     *            {@link SimulatorResourceModel} of the resource.
      */
     public void onResourceModelChanged(String resourceURI,
             SimulatorResourceModel resourceModel);