text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```java
package net.dongliu.apk.parser.struct.resource;
import net.dongliu.apk.parser.struct.ChunkHeader;
/**
* @author dongliu
*/
public class PackageHeader extends ChunkHeader {
// If this is a base package, its ID. ResourcePackage IDs start at 1 (corresponding to the value of
// the package bits in a r... | /content/code_sandbox/lib.ApkParser/src/net/dongliu/apk/parser/struct/resource/PackageHeader.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 524 |
```java
package net.dongliu.apk.parser.struct.resource;
import net.dongliu.apk.parser.struct.StringPool;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Resource packge.
*
* @author dongliu
*/
public class ResourcePackage {
// the packageName
priva... | /content/code_sandbox/lib.ApkParser/src/net/dongliu/apk/parser/struct/resource/ResourcePackage.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 560 |
```java
package net.dongliu.apk.parser.struct.resource;
import net.dongliu.apk.parser.struct.ChunkHeader;
/**
* @author dongliu
*/
public class TypeSpecHeader extends ChunkHeader {
// The type identifier this chunk is holding. Type IDs start at 1 (corresponding to the value
// of the type bits in a resour... | /content/code_sandbox/lib.ApkParser/src/net/dongliu/apk/parser/struct/resource/TypeSpecHeader.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 357 |
```java
package net.dongliu.apk.parser.struct.resource;
import java.util.Arrays;
import java.util.Locale;
/**
* @author dongliu.
*/
public class ResourceMapEntry extends ResourceEntry {
// Resource identifier of the parent mapping, or 0 if there is none.
//ResTable_ref specifies the parent Resource, if any,... | /content/code_sandbox/lib.ApkParser/src/net/dongliu/apk/parser/struct/resource/ResourceMapEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 384 |
```java
package net.dongliu.apk.parser.struct.resource;
/**
* used by resource Type.
*
* @author dongliu
*/
public class ResTableConfig {
// Number of bytes in this structure. uint32_t
private long size;
// Mobile country code (from SIM). 0 means "any". uint16_t
private short mcc;
// Mobile n... | /content/code_sandbox/lib.ApkParser/src/net/dongliu/apk/parser/struct/resource/ResTableConfig.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,097 |
```java
package net.dongliu.apk.parser.struct.resource;
import net.dongliu.apk.parser.struct.ChunkHeader;
/**
* @author dongliu
*/
public class TypeHeader extends ChunkHeader {
public static final long NO_ENTRY = 0xFFFFFFFFL;
// The type identifier this chunk is holding. Type IDs start at 1 (correspondin... | /content/code_sandbox/lib.ApkParser/src/net/dongliu/apk/parser/struct/resource/TypeHeader.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 441 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.mdi;
import javax.swing.filechooser.FileFilter;
import java.io.File;
/**
Configura... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/mdi/BasicFileFilter.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 400 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.mdi;
import javax.swing.*;
/**
Child frame for MDI application.
@author <a h... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/mdi/BasicInternalFrame.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 411 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.mdi;
import javax.swing.*;
import javax.swing.event.InternalFrameEvent;
import javax.s... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/mdi/BasicDesktopManager.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 2,842 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.mdi;
import org.gjt.jclasslib.util.GUIHelper;
import javax.swing.*;
import java.awt.*;... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/mdi/BasicMDIFrame.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 2,513 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes implementing a multiple document interface (MDI)
framework. They do not contain application specific logic.
</body>
</html>
``` | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/mdi/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 75 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.mdi;
import java.util.List;
/**
Serializable configuration object for the window s... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/mdi/MDIConfig.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,066 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import org.gjt.jclasslib.structures.attributes.*;
import org.gjt.jclasslib.structures.co... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/AttributeInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,647 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import org.gjt.jclasslib.structures.constants.*;
/**
Utility methods f... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/ConstantPoolUtil.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,706 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import java.io.*;
/**
* Describes a method in a <tt>ClassFile</tt> struct... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/MethodInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 502 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import java.io.*;
/**
Base class for all structures with attributes.
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/AbstractStructureWithAttributes.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 788 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import org.gjt.jclasslib.io.Log;
import org.gjt.jclasslib.structures.consta... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/ClassFile.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 4,978 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import org.gjt.jclasslib.structures.constants.ConstantUtf8Info;
import jav... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/ClassMember.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 836 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import org.gjt.jclasslib.structures.constants.*;
import java.io.DataInput;... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/CPInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,509 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import java.io.*;
/**
* Describes a field in a <tt>ClassFile</tt> structu... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/FieldInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 507 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
/**
* Defines access flags constants and verbose expressions as defined by... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/AccessFlags.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,472 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes mirroring the data structures of the class file format. <p>
Most data structures mirror those defined in the
<a href="path_to_ur... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 135 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
/**
Exception relating to errors in the class file format of internal s... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/InvalidByteCodeException.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 203 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures;
import org.gjt.jclasslib.io.Log;
import java.io.*;
import java.lang.reflec... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/AbstractStructure.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,482 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.*;
import java.io.*;
/**... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/ElementValuePair.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 795 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/ArrayElementValue.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 598 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.*;
import java.io.*;
/**... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/ElementValue.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,138 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/EnumElementValue.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 619 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/ConstElementValue.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 468 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes for constant pool data structures which describe element values.
</body>
</html>
``` | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 65 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/ClassElementValue.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 467 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/SyntheticAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 304 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.elementvalues;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/elementvalues/AnnotationElementValue.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 746 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
i... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LocalVariableTableAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 540 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LineNumberTableAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 597 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/DeprecatedAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 300 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.*;
import java.io.*;
/**
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LineNumberTableEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 783 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
/**
* Describes an <tt>RuntimeInvisibleAnnotations</tt> attribu... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/RuntimeInvisibleAnnotationsAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 207 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.ClassFile;
import org.gjt.jc... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LocalVariableTableEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 572 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.ClassFile;
import org.gjt.jcl... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LocalVariableTypeTableEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 574 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.*;
import java.io.*;
/**
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/InnerClassesEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,320 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.*;
import java.io.*;
/**
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/ExceptionTableEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,268 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gjt... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LocalVariableCommonAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 435 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gjt... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/EnclosingMethodAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 525 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/CodeAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,009 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/ExceptionsAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 560 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/ConstantValueAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 427 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
/**
* Describes an <tt>RuntimeVisibleAnnotations</tt> attribut... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/RuntimeVisibleAnnotationsAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 204 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gjt... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/SignatureAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 390 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes for attribute data structures which extend
<tt>org.gjt.jclasslib.structures.AttributeInfo</tt> and their substructures.
</body>
</... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 84 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LocalVariableTypeTableAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 539 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gjt... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/AnnotationDefaultAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 439 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gjt... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/RuntimeAnnotationsAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 567 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/InnerClassesAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 566 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AttributeInfo;
import org.gj... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/SourceFileAttribute.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 433 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantInterfaceMethodrefInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 400 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.attributes;
import org.gjt.jclasslib.structures.AbstractStructure;
import org... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/attributes/LocalVariableCommonEntry.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 923 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantClassInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 594 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantLargeNumeric.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 714 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantDoubleInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 477 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantUtf8Info.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 604 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantFieldrefInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 394 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes for constant pool data structures which extend
<tt>org.gjt.jclasslib.structures.CPInfo</tt>.
</body>
</html>
``` | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 81 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantIntegerInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 390 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantFloatInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 402 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
im... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantLongInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 449 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantReference.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 840 |
```java
/*
* Ando
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.InvalidByteCodeExcep... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantMethodrefInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 398 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantNumeric.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 476 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantStringInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 542 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
/**
Holds a single match-offset pair.
@author <a href="mailto:jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/MatchOffsetPair.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 340 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.structures.constants;
import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclass... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/structures/constants/ConstantNameAndTypeInfo.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 784 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/ImmediateShortInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 412 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/TableSwitchInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 748 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/PaddedInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 446 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/InvokeInterfaceInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 434 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
/**
* Defines utility methods for dealing with opcodes.
*
* @author <a href="mail... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/OpcodesUtil.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 3,862 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/ImmediateIntInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 405 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/LookupSwitchInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 681 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.structures.InvalidByteCodeException;
import org.gjt.... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/CodeInsertion.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 4,015 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/IncrementInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 498 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/MultianewarrayInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 359 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes which are wrappers for opcode instructions contained
in the <tt>code</tt> field of a <tt>Code</tt> attribute structure. These classes... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 183 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/BranchInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 404 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/ImmediateByteInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 605 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCo... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/AbstractInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 672 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
/**
Describes an instructions with no immediate arguments.
@author ... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/SimpleInstruction.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 163 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes for the Netbeans module.
</body>
</html>
``` | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/nbmodule/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 61 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import java.io.DataOutputStream;
import java.io.OutputStream;
/**
<tt>DataOutp... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ByteCodeOutputStream.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 218 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.bytecode;
/**
Defines all opcodes and their verbose representation as well as the t... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/bytecode/Opcodes.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 3,787 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import org.gjt.jclasslib.structures.ClassFile;
import org.gjt.jclasslib.structures.... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ClassFileWriter.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 343 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
/**
Utility class to log errors, warnings and debug messages.
@author <a ... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/Log.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 265 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import java.io.DataInput;
/**
Extends <tt>DataInput</tt> to accomodate for a m... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ByteCodeInput.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 183 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import org.gjt.jclasslib.bytecode.*;
import java.io.ByteArrayInputStream;
import j... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ByteCodeReader.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 2,457 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import org.gjt.jclasslib.bytecode.AbstractInstruction;
import java.io.ByteArrayOut... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ByteCodeWriter.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 361 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import java.io.DataInputStream;
import java.io.InputStream;
/**
<tt>DataInputS... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ByteCodeInputStream.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 217 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import java.io.DataOutput;
/**
Extends <tt>DataOutput</tt> to accomodate for a... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ByteCodeOutput.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 182 |
```html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Package documentation</title>
</head>
<body>
This package contains classes which convert between the class file format and
the reprensentations defined in the packages <tt>org.gjt.jclasslib.structures</tt>
... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/package.html | html | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 104 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import java.io.*;
/**
<tt>InputStream</tt> which counts the number of bytes re... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/CountedInputStream.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 380 |
```java
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.io;
import org.gjt.jclasslib.structures.*;
import java.io.*;
import java.util.jar.JarE... | /content/code_sandbox/lib.JBE/src/org/gjt/jclasslib/io/ClassFileReader.java | java | 2016-04-18T17:52:39 | 2024-08-16T07:10:35 | ApkToolPlus | CYRUS-STUDIO/ApkToolPlus | 1,196 | 1,063 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.