Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

PointOfView
Class DimensionFieldList  view DimensionFieldList download DimensionFieldList.java

java.lang.Object
  extended byPointOfView.DimensionFieldList

public class DimensionFieldList
extends java.lang.Object

DimensionFieldList provides services to maintain list of DimensionField objects.


Field Summary
private  java.util.LinkedList colDimensionFields
           
 
Constructor Summary
DimensionFieldList()
          Main constructor.
 
Method Summary
 void addDimensionField(DimensionField df)
          Add a new DimensionField object into DimensionField list.
 void addDimensionField(java.lang.String name, java.lang.String value, boolean key, boolean group)
          Create and add a new DimensionField object using specified parameters.
 long count()
          Return size of the DimensionField list.
 DimensionField getDimensionField(int index)
          Return the specified DimensionField object using value specified in parameter.
 java.util.LinkedList getDimensionFields()
          Return the DimensionField objects list.
 boolean isDimensionField(java.lang.String name)
          Test if a field name entered in parameter is contained ni the current list.
 boolean mustGroup()
          Test if a field with mustGroup attribute is contained in the current list.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

colDimensionFields

private java.util.LinkedList colDimensionFields
Constructor Detail

DimensionFieldList

public DimensionFieldList()
Main constructor.

Method Detail

getDimensionField

public DimensionField getDimensionField(int index)
Return the specified DimensionField object using value specified in parameter.


getDimensionFields

public java.util.LinkedList getDimensionFields()
Return the DimensionField objects list.


addDimensionField

public void addDimensionField(DimensionField df)
Add a new DimensionField object into DimensionField list.


addDimensionField

public void addDimensionField(java.lang.String name,
                              java.lang.String value,
                              boolean key,
                              boolean group)
Create and add a new DimensionField object using specified parameters.


count

public long count()
Return size of the DimensionField list.


isDimensionField

public boolean isDimensionField(java.lang.String name)
Test if a field name entered in parameter is contained ni the current list.


mustGroup

public boolean mustGroup()
Test if a field with mustGroup attribute is contained in the current list.