Package biz.smart.mdx.valuegenerators

Examples of biz.smart.mdx.valuegenerators.ParentShareValueGenerator


  public static <H extends HShare> MdxSet<Member<H>> getShare(H shareHierarchy, Axis shareAxis){
    BracketName name = shareHierarchy.getMemberExpression(shareHierarchy.getCaption()).getDefinition();
    Member<?> sectionWithMember =
      new Member<H>(shareHierarchy,
          name,
          new ParentShareValueGenerator(shareHierarchy.getCaption(), shareAxis)
      );
    MdxSet<Member<H>> set = new MdxSet<Member<H>>(sectionWithMember);
    return set;
  }
View Full Code Here

TOP

Related Classes of biz.smart.mdx.valuegenerators.ParentShareValueGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.