Package org.tentackle.persist.wurblet
Class RemoteIncludes
- java.lang.Object
-
- org.tentackle.persist.wurblet.RemoteIncludes
-
public class RemoteIncludes extends java.lang.ObjectHandles generated .remote and .impl-code.Also creates the RMI-java files, if missing.
- Author:
- harald
-
-
Constructor Summary
Constructors Constructor Description RemoteIncludes(org.tentackle.wurblet.ModelWurblet wurblet)Create remote includes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendImpl(java.lang.String text)Appends text to impl file.voidappendRemote(java.lang.String text)Appends text to remote file.voiddiscard()Marks the heapfiles as discarded.
Such files should not be used to generate code because their contents are incomplete because of former errors.java.io.PrintStreamgetImplStream()java.io.PrintStreamgetRemoteStream()
-
-
-
Method Detail
-
discard
public void discard()
Marks the heapfiles as discarded.
Such files should not be used to generate code because their contents are incomplete because of former errors. Wurblets reading this file should throw aWurbelDiscardException.
-
appendRemote
public void appendRemote(java.lang.String text)
Appends text to remote file.- Parameters:
text- the text to append
-
appendImpl
public void appendImpl(java.lang.String text)
Appends text to impl file.- Parameters:
text- the text to append
-
getRemoteStream
public java.io.PrintStream getRemoteStream()
- Returns:
- get the remote stream
-
getImplStream
public java.io.PrintStream getImplStream()
- Returns:
- the impl stream
-
-