com.android.sdklib.internal.build.SignedJarBuilder.IZipEntryFilter.ZipAbortException Java Examples

The following examples show how to use com.android.sdklib.internal.build.SignedJarBuilder.IZipEntryFilter.ZipAbortException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SignedJarBuilder.java    From java-n-IDE-for-Android with Apache License 2.0 4 votes vote down vote up
public ZipAbortException() {
    super();
}
 
Example #2
Source File: SignedJarBuilder.java    From java-n-IDE-for-Android with Apache License 2.0 4 votes vote down vote up
public ZipAbortException(String format, Object... args) {
    super(String.format(format, args));
}
 
Example #3
Source File: SignedJarBuilder.java    From java-n-IDE-for-Android with Apache License 2.0 4 votes vote down vote up
public ZipAbortException(Throwable cause, String format, Object... args) {
    super(String.format(format, args), cause);
}
 
Example #4
Source File: SignedJarBuilder.java    From java-n-IDE-for-Android with Apache License 2.0 4 votes vote down vote up
public ZipAbortException(Throwable cause) {
    super(cause);
}
 
Example #5
Source File: SignedJarBuilder.java    From javaide with GNU General Public License v3.0 4 votes vote down vote up
public ZipAbortException() {
    super();
}
 
Example #6
Source File: SignedJarBuilder.java    From javaide with GNU General Public License v3.0 4 votes vote down vote up
public ZipAbortException(String format, Object... args) {
    super(String.format(format, args));
}
 
Example #7
Source File: SignedJarBuilder.java    From javaide with GNU General Public License v3.0 4 votes vote down vote up
public ZipAbortException(Throwable cause, String format, Object... args) {
    super(String.format(format, args), cause);
}
 
Example #8
Source File: SignedJarBuilder.java    From javaide with GNU General Public License v3.0 4 votes vote down vote up
public ZipAbortException(Throwable cause) {
    super(cause);
}
 
Example #9
Source File: SignedJarBuilder.java    From java-n-IDE-for-Android with Apache License 2.0 2 votes vote down vote up
/**
 * Checks a file for inclusion in a Jar archive.
 * @param archivePath the archive file path of the entry
 * @return <code>true</code> if the file should be included.
 * @throws ZipAbortException if writing the file should be aborted.
 */
public boolean checkEntry(String archivePath) throws ZipAbortException;
 
Example #10
Source File: SignedJarBuilder.java    From javaide with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Checks a file for inclusion in a Jar archive.
 * @param archivePath the archive file path of the entry
 * @return <code>true</code> if the file should be included.
 * @throws ZipAbortException if writing the file should be aborted.
 */
boolean checkEntry(String archivePath) throws ZipAbortException;