Examples of BackgroundSpecification


Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

                                final LayoutElement currentNode,
                                final StyleKey key, final int index,
                                final CSSConstant item)
  {
    final CSSConstant bvalue = (CSSConstant) lookupValue(item);
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();
    backgroundSpecification.setBackgroundClip(index, bvalue);
    return true;
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

                                final LayoutElement currentNode,
                                final StyleKey key, final int index,
                                final CSSConstant item)
  {
    final CSSConstant bvalue = (CSSConstant) lookupValue(item);
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();
    backgroundSpecification.setBackgroundAttachment(index, bvalue);
    return true;
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

    final int length = list.getLength();
    if (length == 0)
    {
      return;
    }
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();

    for (int i = 0; i < length; i++)
    {
      final CSSValue item = list.getItem(i);

      if (item instanceof CSSValuePair == false)
      {
        backgroundSpecification.setBackgroundRepeat
                (i, EMPTY_BACKGROUND_REPEAT);
      }
      else
      {
        final CSSValuePair bvalue = (CSSValuePair) item;
        backgroundSpecification.setBackgroundRepeat(i, bvalue);
      }
    }
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

                                final LayoutElement currentNode,
                                final StyleKey key, final int index,
                                final CSSConstant item)
  {
    final CSSConstant bvalue = (CSSConstant) lookupValue(item);
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();
    backgroundSpecification.setBackgroundOrigin(index, bvalue);
    return true;
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

    final int length = list.getLength();
    if (length == 0)
    {
      return;
    }
    final BackgroundSpecification backgroundSpecification =
            layoutContext.getBackgroundSpecification();
    final ResourceKey baseURL = DocumentContextUtility.getBaseResource
        (process.getDocumentContext());

    for (int i = 0; i < length; i++)
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

    final int length = list.getLength();
    if (length == 0)
    {
      return;
    }
    final BackgroundSpecification backgroundSpecification =
            layoutContext.getBackgroundSpecification();
    final ResourceKey baseURL = DocumentContextUtility.getBaseResource
        (process.getDocumentContext());

    for (int i = 0; i < length; i++)
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

                                final LayoutElement currentNode,
                                final StyleKey key, final int index,
                                final CSSConstant item)
  {
    final CSSConstant bvalue = (CSSConstant) lookupValue(item);
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();
    backgroundSpecification.setBackgroundClip(index, bvalue);
    return true;
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

                                final LayoutElement currentNode,
                                final StyleKey key, final int index,
                                final CSSConstant item)
  {
    final CSSConstant bvalue = (CSSConstant) lookupValue(item);
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();
    backgroundSpecification.setBackgroundAttachment(index, bvalue);
    return true;
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

    final int length = list.getLength();
    if (length == 0)
    {
      return;
    }
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();

    for (int i = 0; i < length; i++)
    {
      final CSSValue item = list.getItem(i);

      if (item instanceof CSSValuePair == false)
      {
        backgroundSpecification.setBackgroundRepeat
                (i, EMPTY_BACKGROUND_REPEAT);
      }
      else
      {
        final CSSValuePair bvalue = (CSSValuePair) item;
        backgroundSpecification.setBackgroundRepeat(i, bvalue);
      }
    }
  }
View Full Code Here

Examples of org.jfree.layouting.layouter.context.BackgroundSpecification

                                final LayoutElement currentNode,
                                final StyleKey key, final int index,
                                final CSSConstant item)
  {
    final CSSConstant bvalue = (CSSConstant) lookupValue(item);
    final BackgroundSpecification backgroundSpecification =
            currentNode.getLayoutContext().getBackgroundSpecification();
    backgroundSpecification.setBackgroundOrigin(index, bvalue);
    return true;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.