Package org.domain.model.component.topic

Examples of org.domain.model.component.topic.Topic.output()


      Topics topics = getTopics();
      Topic topic = new Topic(this.getDomainModel());
      topic.setName("SE");
      topic.setDescription("Software Engineering");
      if (topics.add(topic)) {
        topic.output("Software Engineering");
      }
    } catch (ActionException ae) {
      log.info("Add topic problem: " + ae.getMessage());
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.