Serialized Form
-
Package gnu.cajo
-
Class gnu.cajo.Cajo.Purger extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
object
java.lang.Object object
-
-
Class gnu.cajo.Cajo.Searchable extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
object
java.lang.Object object
-
-
-
Package gnu.cajo.invoke
-
Class gnu.cajo.invoke.Client extends java.applet.Applet implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
gbuffer
java.awt.Graphics gbuffer
-
ibuffer
java.awt.Image ibuffer
-
-
Class gnu.cajo.invoke.JClient extends javax.swing.JApplet implements Serializable
- serialVersionUID:
- 1L
-
Class gnu.cajo.invoke.Remote extends java.rmi.server.UnicastRemoteObject implements Serializable
-
Serialized Fields
-
item
java.lang.Object item
This is the reference to the local (or possibly remote) object reference being made remotely invokable by this Virtual Machine. It is declared public to provide the convenience to refer to both the wrapper, and its wrapped object, via a single reference. -
unexportOnUnreference
boolean unexportOnUnreference
-
-
-
-
Package gnu.cajo.utils
-
Class gnu.cajo.utils.BaseProxy extends java.lang.Object implements Serializable
-
Serialized Fields
-
bundle
java.lang.String bundle
The path/filename of the resource bundle in the proxy's codebase jar file. It will be used to localize any displayed strings, to the language of the proxy recipient, as close as possible, if supplied. It is declared public since its value is typically assigned by a builder application. -
container
java.awt.Container container
A reference to the proxy's graphical user interface, if any. It will be returned to the client as a result of its initialization invocation. -
item
RemoteInvoke item
The reference to the sending server, on which the proxy may asynchronously callback. It is set by theItemServer
during the bind operation. -
runnable
BaseProxy.MainThread runnable
A reference to the proxy's processing code. If non-null, it will be started automatically upon arrival at the host. Its thread can be accessed through the thread member. -
strings
java.lang.String[] strings
The collection of strings to be displayed at the host VM. On instantiation at the host, the array will be loaded with localized strings from the most appropriate resource bundle for the locale of the receiving VM, if provided. It is public since its value is typically assigned by a builder program.
-
-
-
Class gnu.cajo.utils.BaseProxy.MainThread extends java.lang.Object implements Serializable
-
Class gnu.cajo.utils.BaseProxy.Panel extends java.awt.Container implements Serializable
-
Class gnu.cajo.utils.MonitorItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
count
long count
-
item
java.lang.Object item
The object being monitored. It is declared as public to allow the reference of the MontorItem, and its wrapped object, from a single instance of MonitorItem. -
LOCALOFF
boolean LOCALOFF
This flag can be used to selectively enable and disable monitoring on a instance-wide level. By default it is set to false, when true, no output to the logstream will take place. -
oldtime
long oldtime
-
os
java.io.OutputStream os
-
-
-
Class gnu.cajo.utils.ProxyLoader extends java.lang.Object implements Serializable
- serialVersionUID:
- 140989193L
-
Serialized Fields
-
handle
java.lang.String handle
-
server
RemoteInvoke server
-
-
Class gnu.cajo.utils.ZippedProxy extends java.lang.Object implements Serializable
- serialVersionUID:
- 3235835917L
-
Serialized Fields
-
payload
byte[] payload
The compressed serialized proxy object. It is created on server assignment when binding at the hosting VM. This is to save time and memory, especially if the same proxy is sent many times, at the expense of no longer being able to modify the proxy. It is nulled at the client, following proxy decompression, to allow the unneeded memory to be garbage collected.
-
-
-
Package gnu.cajo.utils.extra
-
Class gnu.cajo.utils.extra.AsyncMethod extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
callback
java.lang.Object callback
This is the reference to the object, local or remote, which to call back asynchronously, when the invocation has completed. (if non-null) -
item
java.lang.Object item
This is the reference to the object, usually remote, on which to invoke asynchronously. It works on local objects as well.
-
-
Class gnu.cajo.utils.extra.AuditorItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
auditor
java.lang.Object auditor
The auditor object. This object's preprocess method will be invoked with the arguments to be provided to the audited object. It has the three options:- Change the arguments
- Approve the arguments, as is
- Reject the invocation, by throwing an Exception.
-
item
java.lang.Object item
This is the object to be audited. Since it has no knowlege of the audit it's structure need not be changed in any way to accomodate it. It is declared as public to allow the reference of the AuditorItem, and its wrapped object, from a single instance of AuditorItem.
-
-
-
Class gnu.cajo.utils.extra.ClientProxy extends java.lang.Object implements Serializable
-
Serialized Fields
-
args
java.lang.Object args
-
connected
boolean connected
-
done
boolean done
-
method
java.lang.String method
-
remoteThis
Remote remoteThis
This is the remoted reference to the server's ClientProxy. It is passed back to the client, to be used int theItemProxy
constructor, to create a firewall traversing asynchronous callback link. In order to work, logically, it can only be passed to one remote client. -
timeout
int timeout
This is the longest value, in milliseconds, that the server will wait for a client invocation to execute before it aborts it. It is set by default to 5000 (5 seconds). Depending on the type of functionality being performed in the client methods, this time may require adjusting. When it is changed, the new value will apply for all subsequent calls.
-
-
-
Class gnu.cajo.utils.extra.DynamicObject extends java.lang.Object implements Serializable
-
Class gnu.cajo.utils.extra.HashedProxy extends ZippedProxy implements Serializable
- serialVersionUID:
- 188900968760069L
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
writeObject
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Class gnu.cajo.utils.extra.Implements extends java.lang.Object implements Serializable
-
Serialized Fields
-
service
java.lang.Object service
-
-
-
Class gnu.cajo.utils.extra.InterceptorItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
interceptor
java.lang.Object interceptor
The interceptor object. This object will recieve the remote invocation first, on a method of matching signature. The interceptor has the option to process the invocation itself, or pass it on to the intercepted object for processing. It is declared as public to allow the reference of the InterceptorItem, and its interceptor object, from a single instance of InterceptorItem. -
item
java.lang.Object item
This is the object to be intercepted. Since it has no knowlege of the interception it's structure need not be changed in any way to accomodate it. It is declared as public to allow the reference of the InterceptorItem, and its intercepted object, from a single instance of InterceptorItem.
-
-
-
Class gnu.cajo.utils.extra.Nice extends java.lang.Object implements Serializable
-
Serialized Fields
-
fast
boolean fast
A flag to indicate if this wrapper is maximising or minimising the priority of the invocation thread. -
item
java.lang.Object item
The presumably local object reference, for which invocation thread priority will be managed.
-
-
-
Class gnu.cajo.utils.extra.Queue extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
consumers
java.util.LinkedList consumers
The list of consumers, remote and local, to receive producer invocations. -
invocations
java.util.LinkedList invocations
The list of all pending producer method invocations. -
topic
java.lang.Object topic
Some manner of commonly agreed upon descriptor for the subject matter about which the producers and consumers are interested. It must be serialisable.
-
-
Class gnu.cajo.utils.extra.Scheduler extends java.lang.Object implements Serializable
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
-
Serialized Fields
-
kernel
java.lang.Runnable kernel
-
list
java.lang.Object[] list
-
soonFlags
int soonFlags
-
syncFlags
int syncFlags
-
wakeFlags
int wakeFlags
-
-
-
Class gnu.cajo.utils.extra.Timer extends java.lang.Object implements Serializable
-
Serialized Fields
-
index
int index
-
running
boolean running
-
sched
Scheduler sched
-
tasks
java.util.LinkedList tasks
-
-
-
Class gnu.cajo.utils.extra.TransparentItemProxy extends java.lang.Object implements Serializable
- serialVersionUID:
- 3L
-
Serialization Methods
-
writeObject
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Serialized Fields
-
item
java.lang.Object item
-
-
Class gnu.cajo.utils.extra.Wrapper extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
url
java.lang.String url
The URL where to get the wrapped object: file://, http://, ftp://, /path/name, path/name, or //[host][:port]/[name]. The host, port, and name, are all optional. If missing the host is presumed local, the port 1099, and the name "main". The referenced resource can be returned as a MarshalledObject, it will be extracted automatically. If the URL is null, it will be assumed to be ///.
-
-
Class gnu.cajo.utils.extra.Zedmobject extends java.lang.Object implements Serializable
- serialVersionUID:
- 14647694616L
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
writeObject
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Serialized Fields
-
payload
byte[] payload
-
-
-
Package org.ghost4j
-
Class org.ghost4j.GhostscriptException extends java.lang.Exception implements Serializable
- serialVersionUID:
- -3901110749568935981L
-
-
Package org.ghost4j.analyzer
-
Class org.ghost4j.analyzer.AnalyzerException extends java.lang.Exception implements Serializable
- serialVersionUID:
- -2183524735620201412L
-
Class org.ghost4j.analyzer.FontAnalysisItem extends java.lang.Object implements Serializable
- serialVersionUID:
- 3172902215702475060L
-
Serialized Fields
-
embedded
boolean embedded
Indicate is the font is embedded. -
name
java.lang.String name
Font name. -
subSet
boolean subSet
Indicate is the embedded font is a subset or a fullset
-
-
Class org.ghost4j.analyzer.InkAnalysisItem extends java.lang.Object implements Serializable
- serialVersionUID:
- 6192330688526591124L
-
Serialized Fields
-
C
double C
Usage (ratio) of the cyan color on the page. -
K
double K
Usage (ratio) of the black color on the page. -
M
double M
Usage (ratio) of the magenta color on the page. -
pageIndex
int pageIndex
Page index. First page starts at 1. -
Y
double Y
Usage (ratio) of the yellow color on the page.
-
-
-
Package org.ghost4j.converter
-
Class org.ghost4j.converter.ConverterException extends java.lang.Exception implements Serializable
- serialVersionUID:
- -4246261539550729104L
-
-
Package org.ghost4j.display
-
Class org.ghost4j.display.PageRaster extends java.lang.Object implements Serializable
- serialVersionUID:
- -977080307761838114L
-
Serialized Fields
-
data
byte[] data
-
format
int format
-
height
int height
-
raster
int raster
-
width
int width
-
-
-
Package org.ghost4j.document
-
Class org.ghost4j.document.AbstractDocument extends java.lang.Object implements Serializable
- serialVersionUID:
- -7160779330993730486L
-
Serialized Fields
-
content
byte[] content
Content of the document.
-
-
Class org.ghost4j.document.DocumentException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 3773482793220746656L
-
Class org.ghost4j.document.PaperSize extends java.lang.Object implements Serializable
- serialVersionUID:
- -1614204334526018509L
-
Serialized Fields
-
height
int height
Paper height in points. -
name
java.lang.String name
Paper name (if standard paper size) -
width
int width
Paper width in points.
-
-
Class org.ghost4j.document.PDFDocument extends AbstractDocument implements Serializable
- serialVersionUID:
- 6331191005700202153L
-
Class org.ghost4j.document.PSDocument extends AbstractDocument implements Serializable
- serialVersionUID:
- 7225098893496658222L
-
-
Package org.ghost4j.modifier
-
Class org.ghost4j.modifier.ModifierException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 2810773454523525125L
-
-
Package org.ghost4j.renderer
-
Class org.ghost4j.renderer.RendererException extends java.lang.Exception implements Serializable
- serialVersionUID:
- -822410652352349391L
-