summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/Context.java
blob: 2cb56f953c2e5a764a494365b5316d6278f3f9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.madore.damlengine;

import java.util.ArrayList;
import org.w3c.dom.*;

public class Context {

    public Document doc;
    public Element htmlNode;
    public Element headNode;
    public String uriToTop;
    public String fileName;
    public StringBuffer styleContent;
    public StringBuffer scriptContent;
    public ArrayList<String> translations;

    public Context(Document doc) {
	this.doc = doc;
    }

}