com.ihr.xbrl.dts
Class PeriodDimension

java.lang.Object
  extended by com.ihr.xbrl.dts.PeriodDimension
All Implemented Interfaces:
Dimension<ColumnPeriod>

public class PeriodDimension
extends java.lang.Object
implements Dimension<ColumnPeriod>

Author:
Ignacio

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.ihr.xbrl.dts.Dimension
Dimension.DimensionType
 
Field Summary
 
Fields inherited from interface com.ihr.xbrl.dts.Dimension
defaultDimensionsXBRL, duplicatesDimension, formLineDimenion, identifierDimension, instantModeDimension, periodDimension, POSITION_AVAIL, POSITION_COLUMN_HEADERS, POSITION_ROW_HEADERS, RSDimensionsNameNamespace
 
Constructor Summary
PeriodDimension(HasBoySupport hb)
           
 
Method Summary
 boolean addMember(Member<?> member)
          Adds a new dimension member to the end of the members of this dimension.
 boolean bHasFixedName()
          This function returns true if the dimension has a fixed name that must be obtained via a call to Dimension.getDimensionName()
 void clear()
          Empty the Period Dimension content so it can be recreated from the instance
 boolean delMember(Member<?> member)
          Removes an existing dimension member from the dimension domain.
 boolean factMatches(XDTFactWithVirtualDimensions item, Member<?> mem, java.util.HashSet<javax.xml.namespace.QName> dimensionsToMatch)
           
 Member<?> findMember(Member<?> mem)
          Search the Dimension domain for an occurrence of the mem member.
 int getDateStep()
           
 Member<?> getDefault()
          for explicit dimensions this function returns the default member if any is defined
 java.lang.String getDimensionName()
          This function will be used to obtain a dimension name for things that does not have a label like the Period dimension or the Identifier dimension.
 java.util.Collection<Member<?>> getDomain()
          Returns an ordered collection of members.
 HandleDateStep.InstantMode getInstantModeOnPrimaryItem()
           
 HandleDateStep.InstantMode getInstantModeOnUserControl()
           
 java.util.Collection<Member<?>> getMembers()
          Returns an ordered collection of members.
 javax.xml.namespace.QName getName()
          Every Dimension must have a dimension QName.
static javax.xml.namespace.QName getName(java.lang.Object object)
           
 int getSuggestedInitialPosition(javax.xml.namespace.QName selectedPrimaryItem)
          Returns the suggested initial placement position of the graphical element in the GUI.
 Dimension.DimensionType getType()
          returns either com.ihr.xbrl.om.xdt.XDTDimension.TYPED, com.ihr.xbrl.om.xdt.XDTDimension.EXPLICIT depending on the type of the surrounding dimension.
 boolean isPrimary()
          Returns true if the dimension is linked with a primary item and thus it is a PDimension or a DDimension
 boolean isTree()
          Returns true if the representation of this dimension could be a tree of elements or false if it is a list of items
 void setAllowDuplicates(boolean allowDuplicates)
          If the value is true then it is possible for the dimension to contain two identical members as two different member values.
 void setDateStep(int dateStep)
          Update dateStep in all domain members
 void setInstantModeOnPrimaryItem(HandleDateStep.InstantMode newMode)
           
 void setInstantModeOnUserControl(HandleDateStep.InstantMode newMode)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.ihr.xbrl.dts.Dimension
equals, hashCode
 

Constructor Detail

PeriodDimension

public PeriodDimension(HasBoySupport hb)
Method Detail

addMember

public boolean addMember(Member<?> member)
Description copied from interface: Dimension
Adds a new dimension member to the end of the members of this dimension. returns true if the member is new, false if the member already exist

Specified by:
addMember in interface Dimension<ColumnPeriod>

delMember

public boolean delMember(Member<?> member)
Description copied from interface: Dimension
Removes an existing dimension member from the dimension domain.

Specified by:
delMember in interface Dimension<ColumnPeriod>
Parameters:
member - the member to remove

setAllowDuplicates

public void setAllowDuplicates(boolean allowDuplicates)
Description copied from interface: Dimension
If the value is true then it is possible for the dimension to contain two identical members as two different member values. If the value is false, a call to a method addMember will always check the existence of the member before the member is added to the dimension

Specified by:
setAllowDuplicates in interface Dimension<ColumnPeriod>

bHasFixedName

public boolean bHasFixedName()
Description copied from interface: Dimension
This function returns true if the dimension has a fixed name that must be obtained via a call to Dimension.getDimensionName()

Specified by:
bHasFixedName in interface Dimension<ColumnPeriod>
Returns:
boolean

getDimensionName

public java.lang.String getDimensionName()
Description copied from interface: Dimension
This function will be used to obtain a dimension name for things that does not have a label like the Period dimension or the Identifier dimension.

Specified by:
getDimensionName in interface Dimension<ColumnPeriod>
Returns:
String

getSuggestedInitialPosition

public int getSuggestedInitialPosition(javax.xml.namespace.QName selectedPrimaryItem)
Description copied from interface: Dimension
Returns the suggested initial placement position of the graphical element in the GUI. This value is a constant defined in this interface

Specified by:
getSuggestedInitialPosition in interface Dimension<ColumnPeriod>
Parameters:
selectedPrimaryItem - this is the selected primary item in the GUI
Returns:
integer constant defined in this interface

getMembers

public java.util.Collection<Member<?>> getMembers()
Description copied from interface: Dimension
Returns an ordered collection of members. If the members are hierarchically organized then the ordering includes parents first, when a parent has children, then the list of children from the first one to the last one then the parent continues.

Specified by:
getMembers in interface Dimension<ColumnPeriod>
Returns:
Collection of members

isTree

public boolean isTree()
Description copied from interface: Dimension
Returns true if the representation of this dimension could be a tree of elements or false if it is a list of items

Specified by:
isTree in interface Dimension<ColumnPeriod>
Returns:
boolean value (never calculated)

getDomain

public java.util.Collection<Member<?>> getDomain()
Description copied from interface: Dimension
Returns an ordered collection of members. If the members are hierarchically organized then the ordering includes only the parent elements.

Specified by:
getDomain in interface Dimension<ColumnPeriod>
Returns:
Collection of members

isPrimary

public boolean isPrimary()
Description copied from interface: Dimension
Returns true if the dimension is linked with a primary item and thus it is a PDimension or a DDimension

Specified by:
isPrimary in interface Dimension<ColumnPeriod>
Returns:
boolean value

factMatches

public boolean factMatches(XDTFactWithVirtualDimensions item,
                           Member<?> mem,
                           java.util.HashSet<javax.xml.namespace.QName> dimensionsToMatch)
Specified by:
factMatches in interface Dimension<ColumnPeriod>
Returns:

getDefault

public Member<?> getDefault()
Description copied from interface: Dimension
for explicit dimensions this function returns the default member if any is defined

Specified by:
getDefault in interface Dimension<ColumnPeriod>
Returns:

getName

public javax.xml.namespace.QName getName()
Description copied from interface: Dimension
Every Dimension must have a dimension QName.

Specified by:
getName in interface Dimension<ColumnPeriod>
Returns:
QName

getName

public static javax.xml.namespace.QName getName(java.lang.Object object)
Parameters:
object -
Returns:

setDateStep

public void setDateStep(int dateStep)
Update dateStep in all domain members

Parameters:
dateStep -

clear

public void clear()
Empty the Period Dimension content so it can be recreated from the instance


findMember

public Member<?> findMember(Member<?> mem)
Description copied from interface: Dimension
Search the Dimension domain for an occurrence of the mem member. If found. the found member is returned. otherwise null is returned

Specified by:
findMember in interface Dimension<ColumnPeriod>
Parameters:
mem - the member to search on this dimension domain
Returns:
the member found or null

getType

public Dimension.DimensionType getType()
Description copied from interface: Dimension
returns either com.ihr.xbrl.om.xdt.XDTDimension.TYPED, com.ihr.xbrl.om.xdt.XDTDimension.EXPLICIT depending on the type of the surrounding dimension. Also returns -1 if the dimension is the primary item or a pre defined dimension in XBRL as the time dimension or the company dimension

Specified by:
getType in interface Dimension<ColumnPeriod>
Returns:
integer constant defined in com.ihr.xbrl.om.xdt.XDTDimension class

setInstantModeOnUserControl

public void setInstantModeOnUserControl(HandleDateStep.InstantMode newMode)
Parameters:
newMode -

setInstantModeOnPrimaryItem

public void setInstantModeOnPrimaryItem(HandleDateStep.InstantMode newMode)
Parameters:
newMode -

getInstantModeOnPrimaryItem

public HandleDateStep.InstantMode getInstantModeOnPrimaryItem()
Returns:
the instantModeOnPriaryItem

getDateStep

public int getDateStep()
Returns:

getInstantModeOnUserControl

public HandleDateStep.InstantMode getInstantModeOnUserControl()


Copyright 2006-2009 Reporting Standard S.L., C/ Torrecilla del Puerto 1, 28043, Madrid, Espaņa