Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Ragdoc Builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JastAdd
Ragdoc Builder
Commits
7b647c0e
Commit
7b647c0e
authored
7 years ago
by
Jesper
Browse files
Options
Downloads
Patches
Plain Diff
Skip inherited members from java.lang.Object
parent
db996077
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/extendj/ragdoc/JsonBuilder.java
+4
-0
4 additions, 0 deletions
src/main/java/org/extendj/ragdoc/JsonBuilder.java
with
4 additions
and
0 deletions
src/main/java/org/extendj/ragdoc/JsonBuilder.java
+
4
−
0
View file @
7b647c0e
...
@@ -422,6 +422,10 @@ public class JsonBuilder {
...
@@ -422,6 +422,10 @@ public class JsonBuilder {
ClassDecl
klass
=
(
ClassDecl
)
type
;
ClassDecl
klass
=
(
ClassDecl
)
type
;
while
(
klass
.
hasSuperclass
())
{
while
(
klass
.
hasSuperclass
())
{
ClassDecl
superclass
=
(
ClassDecl
)
klass
.
superclass
();
ClassDecl
superclass
=
(
ClassDecl
)
klass
.
superclass
();
if
(
superclass
.
isObject
()
||
superclass
.
isUnknown
())
{
// Don't include the object/unknown types in the type hierarchy.
break
;
}
JsonArray
methodArray
=
new
JsonArray
();
JsonArray
methodArray
=
new
JsonArray
();
JsonArray
attributeArray
=
new
JsonArray
();
JsonArray
attributeArray
=
new
JsonArray
();
// Set to keep track of which method names have already been listed for
// Set to keep track of which method names have already been listed for
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment