Package oracle.AWXML

Examples of oracle.AWXML.AttributeProjection


   * Creates an AttributeProjection for a Level and sets the name and the
   * Attribute to project onto the Level.
   */
  public void setupAttributeProjection(Level _lev, String _name, Attribute _attr)
  {
     AttributeProjection _ap = _lev.createAttributeProjection();
    _ap.setName(_name);
    _ap.setAttribute(_attr);
  }
View Full Code Here


    // Map the columns of the relational tables or views to the
    // AttributeProjection objects.
    int i = 0;
    for(Iterator attrs = _lev.getAttributes().iterator(); attrs.hasNext();)
    {
      AttributeProjection _curAttr = (AttributeProjection)attrs.next();
      AttributeSourceExpression _attrMap = _dmg.CreateAttributeMap();
      _attrMap.setTargetObject(_curAttr);
      SourceColumn _attrCol = _attrMap.CreateSourceColumn();
      _attrCol.setColumn((String)_columns.elementAt(i));
      i++;
View Full Code Here

   * Creates an AttributeProjection for a Level and sets the name and the
   * Attribute to project onto the Level.
   */
  public void setupAttributeProjection(Level _lev, String _name, Attribute _attr)
  {
     AttributeProjection _ap = _lev.createAttributeProjection();
    _ap.setName(_name);
    _ap.setAttribute(_attr);
  }
View Full Code Here

    // Map the columns of the relational tables or views to the
    // AttributeProjection objects.
    int i = 0;
    for(Iterator attrs = _lev.getAttributes().iterator(); attrs.hasNext();)
    {
      AttributeProjection _curAttr = (AttributeProjection)attrs.next();
      AttributeSourceExpression _attrMap = _dmg.CreateAttributeMap();
      _attrMap.setTargetObject(_curAttr);
      SourceColumn _attrCol = _attrMap.CreateSourceColumn();
      _attrCol.setColumn((String)_columns.elementAt(i));
      i++;
View Full Code Here

TOP

Related Classes of oracle.AWXML.AttributeProjection

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.