Uses of Class
com.mycompany.model.Idea

Packages that use Idea
com.mycompany.controller   
com.mycompany.model   
com.mycompany.service   
com.mycompany.service.impl   
 

Uses of Idea in com.mycompany.controller
 

Methods in com.mycompany.controller that return Idea
 Idea MindMapController.getNewIdea()
           
 

Methods in com.mycompany.controller with parameters of type Idea
 void MindMapController.setNewIdea(Idea newIdea)
           
 

Uses of Idea in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type Idea
static javax.persistence.metamodel.SingularAttribute<Idea,User> Idea_.author
           
static javax.persistence.metamodel.SetAttribute<Idea,Idea> Idea_.children
           
static javax.persistence.metamodel.SetAttribute<Idea,Idea> Idea_.children
           
static javax.persistence.metamodel.SingularAttribute<Idea,java.lang.String> Idea_.description
           
static javax.persistence.metamodel.SingularAttribute<Idea,java.lang.Integer> Idea_.hashCode
           
static javax.persistence.metamodel.SingularAttribute<Idea,java.lang.String> Idea_.name
           
static javax.persistence.metamodel.SingularAttribute<Idea,Idea> Idea_.parent
           
static javax.persistence.metamodel.SingularAttribute<Idea,Idea> Idea_.parent
           
 

Methods in com.mycompany.model that return Idea
 Idea Idea.getParent()
           
 

Methods in com.mycompany.model that return types with arguments of type Idea
 java.util.Set<Idea> Idea.getChildren()
           
 

Methods in com.mycompany.model with parameters of type Idea
 void Idea.setParent(Idea parent)
           
 

Method parameters in com.mycompany.model with type arguments of type Idea
 void Idea.setChildren(java.util.Set<Idea> children)
           
 

Uses of Idea in com.mycompany.service
 

Methods in com.mycompany.service that return Idea
 Idea IdeaService.findIdea(java.lang.Integer id)
          Finds an Idea by ID.
 Idea IdeaService.saveIdea(Idea newIdea)
          Saves an Idea object.
 

Methods in com.mycompany.service that return types with arguments of type Idea
 java.util.List<Idea> IdeaService.findIdeas()
          Finds a list of Idea objects.
 

Methods in com.mycompany.service with parameters of type Idea
 void IdeaService.buildMindMap(Idea idea, org.primefaces.model.mindmap.MindmapNode root)
          Populates a mind map data structure from an Idea using the MindmapNode interface.
 Idea IdeaService.saveIdea(Idea newIdea)
          Saves an Idea object.
 

Uses of Idea in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return Idea
 Idea IdeaServiceImpl.findIdea(java.lang.Integer id)
           
 Idea IdeaServiceImpl.saveIdea(Idea idea)
           
 

Methods in com.mycompany.service.impl that return types with arguments of type Idea
 java.util.List<Idea> IdeaServiceImpl.findIdeas()
           
 

Methods in com.mycompany.service.impl with parameters of type Idea
 void IdeaServiceImpl.buildMindMap(Idea parentIdea, org.primefaces.model.mindmap.MindmapNode parentNode)
          This method uses recursion to build the mind map data structure.
 Idea IdeaServiceImpl.saveIdea(Idea idea)