Skip to content

Commit

Permalink
Merge pull request #135 from mahomaps/bus-stop-info
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
shinovon authored Sep 5, 2024
2 parents 0efa2dc + e4171b7 commit 4e31e78
Show file tree
Hide file tree
Showing 10 changed files with 665 additions and 343 deletions.
10 changes: 9 additions & 1 deletion src/cc/nnproject/json/AbstractJSON.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2022 Arman Jussupgaliyev
Copyright (c) 2022-2024 Arman Jussupgaliyev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,14 +23,22 @@ of this software and associated documentation files (the "Software"), to deal

public abstract class AbstractJSON {

// common methods for both JSONObject and JSONArray

public abstract void clear();

public abstract int size();

public abstract String toString();

public abstract String build();

public final String format() {
return format(0);
}

protected abstract String format(int l);

public abstract boolean similar(Object obj);

}
Loading

0 comments on commit 4e31e78

Please sign in to comment.