| Package | Description |
|---|---|
| java.io |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| java.lang |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| org.apidesign.vm4brwsr |
| Modifier and Type | Class and Description |
|---|---|
class |
BufferedWriter
Writes text to a character-output stream, buffering characters so as to
provide for the efficient writing of single characters, arrays, and strings.
|
class |
FileWriter
Convenience class for writing character files.
|
class |
FilterWriter
Abstract class for writing filtered character streams.
|
class |
OutputStreamWriter
An OutputStreamWriter is a bridge from character streams to byte streams:
Characters written to it are encoded into bytes using a specified
. |
class |
PrintStream
A
PrintStream adds functionality to another output stream,
namely the ability to print representations of various data values
conveniently. |
class |
PrintWriter
Prints formatted representations of objects to a text-output stream.
|
class |
StringWriter
A character stream that collects its output in a string buffer, which can
then be used to construct a string.
|
class |
Writer
Abstract class for writing to character streams.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StringBuffer
A thread-safe, mutable sequence of characters.
|
class |
StringBuilder
A mutable sequence of characters.
|
| Modifier and Type | Method and Description |
|---|---|
Appendable |
Appendable.append(char c)
Appends the specified character to this Appendable.
|
Appendable |
Appendable.append(CharSequence csq)
Appends the specified character sequence to this Appendable.
|
Appendable |
Appendable.append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence to this
Appendable.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Bck2Brwsr.generate(Appendable out)
Generates virtual machine based on previous configuration of the
compiler.
|
static void |
Bck2Brwsr.generate(Appendable out,
Bck2Brwsr.Resources resources,
String... classes)
Helper method to generate virtual machine from bytes served by a
resources
provider. |
static void |
Bck2Brwsr.generate(Appendable out,
ClassLoader loader,
String... classes)
Helper method to generate virtual machine from bytes served by a class loader.
|
Copyright © 2021 API Design. All Rights Reserved.