Uses of Class
com.mycompany.model.Idea

Packages that use Idea
com.mycompany.controller Contains JSF managed bean controller classes for the application. 
com.mycompany.model Contains JPA domain model classes and generated JPA Metamodel classes. 
com.mycompany.service Contains interfaces for all services in the application. 
com.mycompany.service.impl Contains CDI-managed service classes implemented as EJB3 stateless session beans. 
 

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)
          Finds an Idea by ID.
 Idea IdeaServiceImpl.saveIdea(Idea idea)
          Saves an Idea object.
 

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

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