-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
256 additions
and
186 deletions.
There are no files selected for viewing
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/AnnotationItem.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/AnnotationSetList.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/AnnotationSetRefList.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/AnnotationsDirectoryItem.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/ClassDataItem.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/CodeItem.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/DebugInfoItem.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/EncodedArrayItem.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/MapList.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
FormatDEX/src/main/java/org/freeinternals/format/dex/TypeList.java
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
FormatDEX/src/main/java/org/freeinternals/format/dex/annotation_item.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* AnnotationItem.java June 23, 2015, 06:20 | ||
* | ||
* Copyright 2015, FreeInternals.org. All rights reserved. | ||
* Use is subject to license terms. | ||
*/ | ||
package org.freeinternals.format.dex; | ||
|
||
import org.freeinternals.commonlib.core.FileComponent; | ||
|
||
/** | ||
* | ||
* @author Amos Shi | ||
* | ||
* <pre> | ||
* java:S101 - Class names should comply with a naming convention --- We respect the name from DEX Spec instead | ||
* java:S116 - Field names should comply with a naming convention --- We respect the DEX spec name instead | ||
* java:S1104 - Class variable fields should not have public accessibility --- No, we like the simplified final value manner | ||
* </pre> | ||
*/ | ||
@SuppressWarnings({"java:S101", "java:S116", "java:S1104"}) | ||
public class annotation_item extends FileComponent{ | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
FormatDEX/src/main/java/org/freeinternals/format/dex/annotation_set_item.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* AnnotationSetList.java June 23, 2015, 06:20 | ||
* | ||
* Copyright 2015, FreeInternals.org. All rights reserved. | ||
* Use is subject to license terms. | ||
*/ | ||
package org.freeinternals.format.dex; | ||
|
||
import org.freeinternals.commonlib.core.FileComponent; | ||
|
||
/** | ||
* | ||
* @author Amos Shi | ||
* | ||
* <pre> | ||
* java:S101 - Class names should comply with a naming convention --- We respect the name from DEX Spec instead | ||
* java:S116 - Field names should comply with a naming convention --- We respect the DEX spec name instead | ||
* java:S1104 - Class variable fields should not have public accessibility --- No, we like the simplified final value manner | ||
* </pre> | ||
*/ | ||
@SuppressWarnings({"java:S101", "java:S116", "java:S1104"}) | ||
public class annotation_set_item extends FileComponent{ | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
FormatDEX/src/main/java/org/freeinternals/format/dex/annotation_set_ref_list.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* AnnotationSetRefList.java June 23, 2015, 06:20 | ||
* | ||
* Copyright 2015, FreeInternals.org. All rights reserved. | ||
* Use is subject to license terms. | ||
*/ | ||
package org.freeinternals.format.dex; | ||
|
||
import org.freeinternals.commonlib.core.FileComponent; | ||
|
||
/** | ||
* | ||
* @author Amos Shi | ||
* | ||
* <pre> | ||
* java:S101 - Class names should comply with a naming convention --- We respect the name from DEX Spec instead | ||
* java:S116 - Field names should comply with a naming convention --- We respect the DEX spec name instead | ||
* java:S1104 - Class variable fields should not have public accessibility --- No, we like the simplified final value manner | ||
* </pre> | ||
*/ | ||
@SuppressWarnings({"java:S101", "java:S116", "java:S1104"}) | ||
public class annotation_set_ref_list extends FileComponent{ | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
FormatDEX/src/main/java/org/freeinternals/format/dex/annotations_directory_item.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* AnnotationsDirectoryItem.java June 23, 2015, 06:20 | ||
* | ||
* Copyright 2015, FreeInternals.org. All rights reserved. | ||
* Use is subject to license terms. | ||
*/ | ||
package org.freeinternals.format.dex; | ||
|
||
import org.freeinternals.commonlib.core.FileComponent; | ||
|
||
/** | ||
* | ||
* @author Amos Shi | ||
* | ||
* <pre> | ||
* java:S101 - Class names should comply with a naming convention --- We respect the name from DEX Spec instead | ||
* java:S116 - Field names should comply with a naming convention --- We respect the DEX spec name instead | ||
* java:S1104 - Class variable fields should not have public accessibility --- No, we like the simplified final value manner | ||
* </pre> | ||
*/ | ||
@SuppressWarnings({"java:S101", "java:S116", "java:S1104"}) | ||
public class annotations_directory_item extends FileComponent{ | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
FormatDEX/src/main/java/org/freeinternals/format/dex/class_data_item.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* ClassDataItem.java June 23, 2015, 06:20 | ||
* | ||
* Copyright 2015, FreeInternals.org. All rights reserved. | ||
* Use is subject to license terms. | ||
*/ | ||
package org.freeinternals.format.dex; | ||
|
||
import org.freeinternals.commonlib.core.FileComponent; | ||
|
||
/** | ||
* | ||
* @author Amos Shi | ||
* | ||
* <pre> | ||
* java:S101 - Class names should comply with a naming convention --- We respect the name from DEX Spec instead | ||
* java:S116 - Field names should comply with a naming convention --- We respect the DEX spec name instead | ||
* java:S1104 - Class variable fields should not have public accessibility --- No, we like the simplified final value manner | ||
* </pre> | ||
*/ | ||
@SuppressWarnings({"java:S101", "java:S116", "java:S1104"}) | ||
public class class_data_item extends FileComponent{ | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
FormatDEX/src/main/java/org/freeinternals/format/dex/code_item.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* CodeItem.java June 23, 2015, 06:20 | ||
* | ||
* Copyright 2015, FreeInternals.org. All rights reserved. | ||
* Use is subject to license terms. | ||
*/ | ||
package org.freeinternals.format.dex; | ||
|
||
import org.freeinternals.commonlib.core.FileComponent; | ||
|
||
/** | ||
* | ||
* @author Amos Shi | ||
* | ||
* <pre> | ||
* java:S101 - Class names should comply with a naming convention --- We respect the name from DEX Spec instead | ||
* java:S116 - Field names should comply with a naming convention --- We respect the DEX spec name instead | ||
* java:S1104 - Class variable fields should not have public accessibility --- No, we like the simplified final value manner | ||
* </pre> | ||
*/ | ||
@SuppressWarnings({"java:S101", "java:S116", "java:S1104"}) | ||
public class code_item extends FileComponent{ | ||
|
||
} |
Oops, something went wrong.