blob: c96d2d7fc02bc4b8940c50af1883ef1a3d9e24ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* $Id$
* Copyright (C) 2001 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.mif;
// Java
import java.io.*;
import java.util.*;
/**
* Reference MIF Element.
* This element is a lookup reference set that contains
* a list of resources used in the MIF Document.
* When a lookup is performed it will either create a new
* element or return an existing element that is valid.
* THe key depends on the type of reference, it should be able
* to uniquely identify the element.
*/
public class RefElement extends MIFElement {
/**
*/
public RefElement(String n) {
super(n);
}
public MIFElement lookupElement(Object key) {
return null;
}
}
|