Package org.jfree.layouting.layouter.context

Source Code of org.jfree.layouting.layouter.context.DefaultLayoutContext

/**
* ===========================================
* LibLayout : a free Java layouting library
* ===========================================
*
* Project Info:  http://reporting.pentaho.org/liblayout/
*
* (C) Copyright 2006-2007, by Pentaho Corporation and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* ------------
* $Id: DefaultLayoutContext.java 6653 2008-12-02 14:53:40Z tmorgner $
* ------------
* (C) Copyright 2006-2007, by Pentaho Corporation.
*/
package org.jfree.layouting.layouter.context;

import java.util.Collections;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;

import org.jfree.layouting.input.style.StyleKey;
import org.jfree.layouting.input.style.values.CSSValue;
import org.jfree.layouting.layouter.style.LayoutStyleImpl;
import org.jfree.layouting.util.AttributeMap;

/**
* Creation-Date: 14.12.2005, 13:42:06
*
* @author Thomas Morgner
*/
public class DefaultLayoutContext implements LayoutContext, Cloneable
{
  private static Map EMPTY_MAP = Collections.unmodifiableMap(new HashMap());

  private BackgroundSpecification backgroundSpecification;
  private FontSpecification fontSpecification;
  private ContentSpecification contentSpecification;
  private ListSpecification listSpecification;
  private LayoutStyleImpl style;
  private ContextId contextId;
  private String namespace;
  private String tagName;
  private AttributeMap attributeMap;
  private String pseudoElement;
  private boolean derived;
  private Map counters;
  private Map strings;

  public DefaultLayoutContext(final ContextId contextId,
                              final String namespace,
                              final String tagName,
                              final String pseudoElement,
                              final AttributeMap attributeMap)
  {
    this.pseudoElement = pseudoElement;
    if (contextId == null)
    {
      throw new NullPointerException();
    }
    if (attributeMap == null)
    {
      throw new NullPointerException();
    }

    this.namespace = namespace;
    this.tagName = tagName;
    this.attributeMap = attributeMap;

    this.contextId = contextId;
    this.style = new LayoutStyleImpl();
    this.fontSpecification = new FontSpecification(style);
    this.backgroundSpecification = new BackgroundSpecification();
    this.contentSpecification = new ContentSpecification();
    this.listSpecification = new ListSpecification();
    this.strings = EMPTY_MAP;
    this.counters = EMPTY_MAP;
  }

  public String getPseudoElement()
  {
    return pseudoElement;
  }

  public String getNamespace()
  {
    return namespace;
  }

  public String getTagName()
  {
    return tagName;
  }

  public AttributeMap getAttributes()
  {
    return attributeMap;
  }

  public BackgroundSpecification getBackgroundSpecification()
  {
    return backgroundSpecification;
  }

  public FontSpecification getFontSpecification()
  {
    return fontSpecification;
  }

  public ContentSpecification getContentSpecification()
  {
    return contentSpecification;
  }

  public ListSpecification getListSpecification()
  {
    return listSpecification;
  }

  public void setValue(final StyleKey key, final CSSValue value)
  {
    if (derived)
    {
      throw new IllegalStateException();
    }
    style.setValue(key, value);
  }

  public CSSValue getValue(final StyleKey key)
  {
    return style.getValue(key);
  }

  public LayoutStyle getStyle()
  {
    return style;
  }

  public ContextId getContextId()
  {
    return contextId;
  }

  /**
   * Returns the language definition of this layout context. If not set, it
   * defaults to the parent's language. If the root's language is also not
   * defined, then use the system default.
   *
   * @return the defined language, never null.
   */
  public Locale getLanguage()
  {
    // todo:
    return Locale.getDefault();
  }

  public boolean isPseudoElement()
  {
    return pseudoElement != null;
  }

  public Object clone()
  {
    try
    {
      final DefaultLayoutContext lc = (DefaultLayoutContext) super.clone();
      lc.derived = true;
      return lc;
    }
    catch (CloneNotSupportedException e)
    {
      throw new IllegalStateException
          ("Invalid implementation: Clone not supported.");
    }
  }

  public LayoutContext derive()
  {
    final DefaultLayoutContext lc = (DefaultLayoutContext) clone();
    lc.tagName = tagName + '*';
    return lc;
  }

  public void dispose()
  {
    style.dispose();
  }

  public boolean copyFrom(final LayoutStyle style)
  {
    if (derived)
    {
      throw new IllegalStateException();
    }

    return this.style.copyFrom(style);
  }

  public Map getCounters()
  {
    return counters;
  }

  public Map getStrings()
  {
    return strings;
  }

  public LayoutContext detach(final Map counters, final Map strings)
  {
    final DefaultLayoutContext dlc = (DefaultLayoutContext) derive();
    if (strings != null)
    {
      dlc.strings = Collections.unmodifiableMap(strings);
    }
    if (counters != null)
    {
      dlc.counters = Collections.unmodifiableMap(counters);
    }
    return dlc;
  }
}
TOP

Related Classes of org.jfree.layouting.layouter.context.DefaultLayoutContext

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.