Uses of Class
edu.ucsb.cs.scaffold.entity.Concept
Packages that use Concept
Package
Description
-
Uses of Concept in edu.ucsb.cs.scaffold.controller
Methods in edu.ucsb.cs.scaffold.controller that return ConceptModifier and TypeMethodDescriptionConceptsController.designateSubconcept(Long conceptId, Long parentConceptId) ConceptsController.postConcept(CreateConceptDTO dto) ConceptsController.postSubconcept(CreateSubconceptDTO dto) ConceptsController.putConcept(Long conceptId, UpdateConceptDTO dto) ConceptsController.putSubconcept(Long conceptId, UpdateSubconceptDTO dto) ConceptsController.splitOffSubconcept(Long conceptId, Integer x, Integer y) -
Uses of Concept in edu.ucsb.cs.scaffold.repository
Methods in edu.ucsb.cs.scaffold.repository that return types with arguments of type ConceptModifier and TypeMethodDescriptionConceptRepository.findByCourseId(Long courseId) ConceptRepository.findByParentId(Long parentId) ConceptRepository.findByParentIdAndLabel(Long parentId, String label) -
Uses of Concept in edu.ucsb.cs.scaffold.services
Method parameters in edu.ucsb.cs.scaffold.services with type arguments of type ConceptModifier and TypeMethodDescriptionConceptGraphService.reset(List<Concept> topLevelConcepts, List<ConceptEdge> edges) Runs the full scaffold reset analysis: cycle detection, transitive reduction, longest-path leveling, and layout.ConceptGraphService.reset(List<Concept> topLevelConcepts, List<ConceptEdge> edges, Map<Long, Integer> priorXByConceptId) LikeConceptGraphService.reset(List, List), but sorts each level by the given prior x values instead of each concept's own x column.ConceptGraphService.reset(List<Concept> topLevelConcepts, List<ConceptEdge> edges, Map<Long, Integer> priorXByConceptId, int xSpacing, int ySpacing) LikeConceptGraphService.reset(List, List, Map), but lays out using the given xSpacing/ySpacing instead of the defaultConceptGraphService.MIN_HORIZONTAL_SEPARATION/ConceptGraphService.VERTICAL_LEVEL_SEPARATION.