aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete/multiple.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-05-27 08:35:18 -0400
committerScott González <scott.gonzalez@gmail.com>2011-05-27 08:35:18 -0400
commit8a972f5cce2b84a431a700201cdf649edd2f4ac7 (patch)
tree62cbcf17bb74fa3869faca2999130eb13091926a /demos/autocomplete/multiple.html
parentbe7da0239a5dbcd1a1458a5b642dc366fe626efe (diff)
downloadjquery-ui-8a972f5cce2b84a431a700201cdf649edd2f4ac7.tar.gz
jquery-ui-8a972f5cce2b84a431a700201cdf649edd2f4ac7.zip
Autocomplete: Whitespace.
Diffstat (limited to 'demos/autocomplete/multiple.html')
0 files changed, 0 insertions, 0 deletions
href='#n34'>34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
/*
 * $Id$
 * Copyright (C) 2001-2002 The Apache Software Foundation. All rights reserved.
 * For details on use and redistribution please refer to the
 * LICENSE file included with these sources.
 */

package org.apache.fop.area.inline;

import org.apache.fop.area.Area;

import org.w3c.dom.Document;

// cacheable object
/**
 * Foreign object inline area.
 * This inline area represents an instream-foreign object.
 * This holds an xml document and the associated namespace.
 */
public class ForeignObject extends Area {
    private Document doc;
    private String namespace;

    /**
     * Create a new foreign object with the given dom and namespace.
     *
     * @param d the xml document
     * @param ns the namespace of the document
     */
    public ForeignObject(Document d, String ns) {
        doc = d;
        namespace = ns;
    }

    /**
     * Get the document for this foreign object.
     *
     * @return the xml document
     */
    public Document getDocument() {
        return doc;
    }

    /**
     * Get the namespace of this foreign object.
     *
     * @return the namespace of this document
     */
    public String getNameSpace() {
        return namespace;
    }
}