All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.tink.model.Page Maven / Gradle / Ivy

/**
 * Copyright 2008,2009 Ivan SZKIBA
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * under the License.
 */

package net.sourceforge.tink.model;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

import java.util.Date;

public class Page
{
    private Element body;
    private Document document;
    private Element head;
    private Date lastModified;
    private String path;
    private String title;
    private String top;

    public Element getBody()
    {
        return body;
    }

    public void setBody(Element body)
    {
        this.body = body;
    }

    public Document getDocument()
    {
        return document;
    }

    public void setDocument(Document document)
    {
        this.document = document;
    }

    public Element getHead()
    {
        return head;
    }

    public void setHead(Element head)
    {
        this.head = head;
    }

    public Date getLastModified()
    {
        return lastModified;
    }

    public void setLastModified(Date value)
    {
        lastModified = value;
    }

    public String getPath()
    {
        return path;
    }

    public void setPath(String value)
    {
        path = value;
    }

    public String getTitle()
    {
        return title;
    }

    public void setTitle(String title)
    {
        this.title = title;
    }

    public String getTop()
    {
        return top;
    }

    public void setTop(String value)
    {
        top = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy