Examples of BackgroundSpecification


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

      return;

    }

    BackgroundSpecification backgroundSpecification =

            layoutContext.getBackgroundSpecification();

    ResourceKey baseURL = DocumentContextUtility.getBaseResource
View Full Code Here

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

  {

    CSSConstant bvalue = (CSSConstant) lookupValue(item);

    BackgroundSpecification backgroundSpecification =

            currentNode.getLayoutContext().getBackgroundSpecification();

    backgroundSpecification.setBackgroundClip(index, bvalue);

    return true;

  }
View Full Code Here

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

  {

    CSSConstant bvalue = (CSSConstant) lookupValue(item);

    BackgroundSpecification backgroundSpecification =

            currentNode.getLayoutContext().getBackgroundSpecification();

    backgroundSpecification.setBackgroundAttachment(index, bvalue);

    return true;

  }
View Full Code Here

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

      return;

    }

    BackgroundSpecification backgroundSpecification =

            currentNode.getLayoutContext().getBackgroundSpecification();



    for (int i = 0; i < length; i++)

    {

      CSSValue item = list.getItem(i);



      if (item instanceof CSSValuePair == false)

      {

        backgroundSpecification.setBackgroundRepeat

                (i, EMPTY_BACKGROUND_REPEAT);

      }

      else

      {

        CSSValuePair bvalue = (CSSValuePair) item;

        backgroundSpecification.setBackgroundRepeat(i, bvalue);

      }

    }
View Full Code Here

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

  {

    CSSConstant bvalue = (CSSConstant) lookupValue(item);

    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.