Uses of Class
jimm.datavision.Group

Packages that use Group
jimm.datavision Provides the classes and interfaces that make up a DataVision report. 
jimm.datavision.field Field, its subclasses, and related classes like Format and Border. 
jimm.datavision.gui Provides the classes and interfaces that make up the graphical user interface used to build and run DataVision reports. 
jimm.datavision.gui.cmd Provides the classes and interfaces that make up the undo/redo command structure. 
 

Uses of Group in jimm.datavision
 

Fields in jimm.datavision declared as Group
protected  Group ReportReader.group
           
 

Methods in jimm.datavision that return Group
static Group Group.create(Report report, Selectable selectable)
          Creates a new group and gives it a header section containing a selectable field and an empty footer section.
 Group Report.findGroup(Section section)
          Returns the group associated with the specified section, or null if there isn't one.
 Group Report.findGroup(Selectable selectable)
          Returns the group associated with the specified column, or null if there isn't one.
 Group Report.innermostGroup()
          Returns the last (innermost) group in the report, or null if there are no groups.
 

Methods in jimm.datavision with parameters of type Group
 void Report.addGroup(Group g)
           
 void Report.removeGroup(Group g)
           
 

Uses of Group in jimm.datavision.field
 

Fields in jimm.datavision.field declared as Group
protected  Group AggregateField.group
           
 

Methods in jimm.datavision.field that return Group
 Group AggregateField.getGroup()
          Returns the group over which this field is aggregating.
 

Methods in jimm.datavision.field with parameters of type Group
 void AggregateField.setGroup(Group newGroup)
          Sets the group this field is aggregate.
 

Uses of Group in jimm.datavision.gui
 

Fields in jimm.datavision.gui declared as Group
(package private)  Group GroupWinListItem.group
           
 

Methods in jimm.datavision.gui that return Group
 Group GroupWinListItem.getGroup()
           
 

Methods in jimm.datavision.gui with parameters of type Group
protected  void Designer.renameSectionWidgetsIn(SectionArea area, java.lang.String prefix, Group group)
          Recalculates section names for a collection of sections.
 

Constructors in jimm.datavision.gui with parameters of type Group
GroupWinListItem(Selectable selectable, Group group)
           
 

Uses of Group in jimm.datavision.gui.cmd
 

Fields in jimm.datavision.gui.cmd declared as Group
protected  Group NewGroupCommand.group
           
protected  Group DeleteGroupCommand.group
           
protected  Group AbstractAggregateCommand.group
           
 

Constructors in jimm.datavision.gui.cmd with parameters of type Group
AbstractAggregateCommand(Report report, FieldWidget fw, Group group, java.lang.String functionName, java.lang.String commandName)
          Constructor.
DeleteAggregateCommand(Report report, FieldWidget fw, FieldWidget aggregateWidget, java.lang.String funcName, Group group)
          Constructor.
DeleteGroupCommand(Designer designer, Report report, Group group)
          Constructor.
NewAggregateCommand(Report report, FieldWidget fw, Group group, java.lang.String functionName)
          Constructor.