All Packages  Class Hierarchy

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Index of all Fields and Methods

A

append(boolean). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the boolean argument to the string buffer.
append(char). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the char argument to this string buffer.
append(char[]). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the char array argument to this string buffer.
append(char[], int, int). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of a subarray of the char array argument to this string buffer.
append(double). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the double argument to this string buffer.
append(float). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the float argument to this string buffer.
append(int). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the int argument to this string buffer.
append(long). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the long argument to this string buffer.
append(Object). Method in class javabuildtools.PortableStringBuffer
Appends the string representation of the Object argument to this string buffer.
append(String). Method in class javabuildtools.PortableStringBuffer
Appends the string to this string buffer.

B

blendFilesToVector(Vector, String[]). Static method in class javabuildtools.Utils

C

CacheStore(). Constructor for class javabuildtools.CacheStore
capacity(). Method in class javabuildtools.PortableStringBuffer
Returns the current capacity of the String buffer.
charAt(int). Method in class javabuildtools.PortableStringBuffer
The specified character of the sequence currently represented by the string buffer, as indicated by the index argument, is returned.
check(). Method in class javabuildtools.FileChangeMonitor
Checks the new modification times of registered files.
copy(). Method in class javabuildtools.PortableStringBuffer
Copies the buffer value.
count. Variable in class javabuildtools.PortableStringBuffer
The count is the number of characters in the buffer.

D

delete(int, int). Method in class javabuildtools.PortableStringBuffer
Removes the characters in a substring of this PortableStringBuffer.
deleteCharAt(int). Method in class javabuildtools.PortableStringBuffer
Removes the character at the specified position in this PortableStringBuffer (shortening the PortableStringBuffer by one character).
directory. Variable in class javabuildtools.FileChangeMonitor

E

ensureCapacity(int). Method in class javabuildtools.PortableStringBuffer
Ensures that the capacity of the buffer is at least equal to the specified minimum.
expandCapacity(int). Method in class javabuildtools.PortableStringBuffer
This implements the expansion semantics of ensureCapacity but is unsynchronized for use internally by methods which are already synchronized.
extensions. Variable in class javabuildtools.FileChangeMonitor

F

file1. Static variable in class javabuildtools.Test
file2. Static variable in class javabuildtools.Test
file3. Static variable in class javabuildtools.Test
FileChangeController(). Constructor for class javabuildtools.FileChangeController
FileChangeMonitor(String, String[]). Constructor for class javabuildtools.FileChangeMonitor
Looks at the given directory and all files underneath only matching the given extensions.
files. Variable in class javabuildtools.FileChangeMonitor
A list of files and their modification times.

G

getAllFiles(). Method in class javabuildtools.FileChangeMonitor
Returns all files that are being monitored.
getBaseDirectory(String). Static method in class javabuildtools.Utils
Given a java file name.
getCacheDirectory(File, File). Static method in class javabuildtools.CacheStore
A convenient way to take a file and generate a unique cache directory for it to use.
getChangedFiles(). Method in class javabuildtools.FileChangeMonitor
Returns the files that have been changed for this monitor.
getChars(int, int, char[], int). Method in class javabuildtools.PortableStringBuffer
Characters are copied from this string buffer into the destination character array dst.
getFilesFromExtension(String, String[]). Static method in class javabuildtools.Utils

Given a directory and an array of extensions...

getFullClassname(String). Static method in class javabuildtools.Utils
getLevel(). Method in class javabuildtools.Logger
Get the current logging level
getLevel(). Static method in class javabuildtools.StaticLogger
getMonitor(String, String[]). Method in class javabuildtools.FileChangeController
getPackageName(String). Static method in class javabuildtools.Utils
Given a filename return its package name...
getPackageNames(File). Static method in class javabuildtools.Utils

Given a directory.

getPackageNames(String). Static method in class javabuildtools.Utils

Given a filename.

getValue(). Method in class javabuildtools.PortableStringBuffer
globalStringReplace(String, String, String). Static method in class javabuildtools.Utils
Given a string...

I

insert(int, boolean). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the boolean argument into this string buffer.
insert(int, char). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the char argument into this string buffer.
insert(int, char[]). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the char array argument into this string buffer.
insert(int, char[], int, int). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of a subarray of the str array argument into this string buffer.
insert(int, double). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the double argument into this string buffer.
insert(int, float). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the float argument into this string buffer.
insert(int, int). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the second int argument into this string buffer.
insert(int, long). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the long argument into this string buffer.
insert(int, Object). Method in class javabuildtools.PortableStringBuffer
Inserts the string representation of the Object argument into this string buffer.
insert(int, String). Method in class javabuildtools.PortableStringBuffer
Inserts the string into this string buffer.
isValidFile(String, String[]). Static method in class javabuildtools.Utils

L

length(). Method in class javabuildtools.PortableStringBuffer
Returns the length (character count) of this string buffer.
level. Variable in class javabuildtools.Logger
log(String). Method in class javabuildtools.Logger
Log a message with the lowest level.
log(String). Static method in class javabuildtools.StaticLogger
log(String, int). Method in class javabuildtools.Logger
Log a message with the specified level.
log(String, int). Static method in class javabuildtools.StaticLogger
logger. Static variable in class javabuildtools.StaticLogger
Logger(String). Constructor for class javabuildtools.Logger

M

main(String[]). Static method in class javabuildtools.Test
monitors. Variable in class javabuildtools.FileChangeController

P

PortableStringBuffer(). Constructor for class javabuildtools.PortableStringBuffer
Constructs a string buffer with no characters in it and an initial capacity of 16 characters.
PortableStringBuffer(int). Constructor for class javabuildtools.PortableStringBuffer
Constructs a string buffer with no characters in it and an initial capacity specified by the length argument.
PortableStringBuffer(String). Constructor for class javabuildtools.PortableStringBuffer
Constructs a string buffer so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string buffer is a copy of the argument string.
PRODUCT. Variable in class javabuildtools.Logger

R

readObject(ObjectInputStream). Method in class javabuildtools.PortableStringBuffer
readObject is called to restore the state of the PortableStringBuffer from a stream.
replace(int, int, String). Method in class javabuildtools.PortableStringBuffer
Replaces the characters in a substring of this PortableStringBuffer with characters in the specified String.
reverse(). Method in class javabuildtools.PortableStringBuffer
The character sequence contained in this string buffer is replaced by the reverse of the sequence.

S

serialVersionUID. Static variable in class javabuildtools.PortableStringBuffer
use serialVersionUID from JDK 1.0.2 for interoperability
setCharAt(int, char). Method in class javabuildtools.PortableStringBuffer
The character at the specified index of this string buffer is set to ch.
setLength(int). Method in class javabuildtools.PortableStringBuffer
Sets the length of this String buffer.
setLevel(int). Method in class javabuildtools.Logger
Set the current logging level
setLevel(int). Static method in class javabuildtools.StaticLogger
setShared(). Method in class javabuildtools.PortableStringBuffer
shared. Variable in class javabuildtools.PortableStringBuffer
A flag indicating whether the buffer is shared
StaticLogger(). Constructor for class javabuildtools.StaticLogger
substring(int). Method in class javabuildtools.PortableStringBuffer
Returns a new String that contains a subsequence of characters currently contained in this PortableStringBuffer.The substring begins at the specified index and extends to the end of the PortableStringBuffer.
substring(int, int). Method in class javabuildtools.PortableStringBuffer
Returns a new String that contains a subsequence of characters currently contained in this PortableStringBuffer.

T

Test(). Constructor for class javabuildtools.Test
testCacheTools(). Static method in class javabuildtools.Test
testChangeMonitor(). Static method in class javabuildtools.Test
testUtils(). Static method in class javabuildtools.Test
toString(). Method in class javabuildtools.PortableStringBuffer
Converts to a string representing the data in this string buffer.

U

Utils(). Constructor for class javabuildtools.Utils

V

value. Variable in class javabuildtools.PortableStringBuffer
The value is used for character storage.
version. Static variable in class javabuildtools.Utils