KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > etymon > pj > object > PjObject


1 package com.etymon.pj.object;
2
3 import java.io.*;
4 import java.util.*;
5 import com.etymon.pj.*;
6
7 /**
8    A PDF object representation. This is the base class for all
9    high level PDF objects.
10    @author Nassib Nassar
11 */

12 public abstract class PjObject
13     extends BaseObject {
14
15     /**
16        Renumbers object references within this object. This
17        method calls itself recursively to comprehensively renumber
18        all objects contained within this object.
19        @param map the table of object number mappings. Each
20        object number is looked up by key in the hash table, and
21        the associated value is assigned as the new object number.
22        The map hash table should consist of PjNumber keys and
23        PjReference values.
24     */

25     public void renumber(Hashtable map) {
26     }
27
28 }
29
Popular Tags