Changes between Version 3 and Version 4 of AnotherPluginDevelopmentGuide
- Timestamp:
- 30.06.2012 03:05:35 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AnotherPluginDevelopmentGuide
v3 v4 493 493 import static de.deepamehta.plugins.example.model.ExampleTopic.*; 494 494 495 import java.util.logging.Logger;496 497 495 import org.codehaus.jettison.json.JSONObject; 498 496 … … 521 519 } 522 520 523 private Logger log = Logger.getLogger(getClass().getName());524 525 521 /** 526 522 * Creates a new <code>Example</code> topic from <code>ExampleTopic</code> model. 527 523 */ 528 524 public Example(ExampleTopic model, DeepaMehtaService dms, ClientState clientState) { 529 log.warning("CREATE EXAMPLE FROM MODEL" + model);530 525 topic = dms.createTopic(model, clientState); 531 log.warning("CREATED TOPIC " + topic);532 526 this.dms = dms; 533 527 }