denotes the name of file which describes in each line a path to java class to watch for.
The format of this file is:
name.of.package:unix_path_to_java_file_relative_to_this_file<return>
Method that will be called upon ApplicationWillDispatchRequest.
Checks if the request is not a resource request and then calls #checkAndCompileOnNotification()
A Runnable which waits for a process to complete together with a notification scheme
allowing another thread to wait a maximum number of seconds for the process to complete
before killing it.
Looks up an item in a Map for the given key and returns the value - unless
there is no entry for the given key in which case add the default value
to the map and return that.
An alias method so that a process appears similar to System.out, System.in, System.err;
you can use process.in, process.out, process.err in a similar way
An alias method so that a process appears similar to System.out, System.in, System.err;
you can use process.in, process.out, process.err in a similar way
An alias method so that a process appears similar to System.out, System.in, System.err;
you can use process.in, process.out, process.err in a similar way
Iterates over every element of the collection and return each object that matches
the given filter - calling the isCase() method used by switch statements.
Iterates through the given collection, passing in the initial value to
the closure along with the current iterated item then passing into the
next iteration the value of the previous closure.
Increments the last digit in the given string, resetting
it and moving onto the next digit if increasing the digit
no longer becomes a letter or digit.
Decrements the last digit in the given string, resetting
it and moving onto the next digit if increasing the digit
no longer becomes a letter or digit.
Returns an array of paths to the opened projects that have a CPFileList.txt.
This code is pretty fragile and subject to changes between versions of the dev-tools.
Allows a Reader to be used, calling the closure with the writer
and then ensuring that the writer is closed down again irrespective
of whether exceptions occur or the
Allows a InputStream to be used, calling the closure with the stream
and then ensuring that the stream is closed down again irrespective
of whether exceptions occur or the
Allows a OutputStream to be used, calling the closure with the stream
and then ensuring that the stream is closed down again irrespective
of whether exceptions occur.
Allows an InputStream and an OutputStream from a Socket to be used,
calling the closure with the streams and then ensuring that the streams are closed down again
irrespective of whether exceptions occur.
Helper method to create a new BufferedWriter for a file in a specified encoding
and then passes it into the closure and ensures it is closed again afterwords
Allows a writer to be used, calling the closure with the writer
and then ensuring that the writer is closed down again irrespective
of whether exceptions occur or the
Allows an output stream to be used, calling the closure with the output stream
and then ensuring that the output stream is closed down again irrespective
of whether exceptions occur
Allows an output stream to be used, calling the closure with the output stream
and then ensuring that the output stream is closed down again irrespective
of whether exceptions occur.
Helper method to create a new BufferedWriter for a file in a specified encoding
in append mode and then passes it into the closure and ensures it is closed again afterwords
A helper method so that dynamic dispatch of the writer.write(object) method
will always use the more efficient Writable.writeTo(writer) mechanism if the
object implements the Writable interface.