Package | Description |
---|---|
org.codehaus.janino |
The classes in this package pose the core of the Janino JavaTM compiler.
|
org.codehaus.janino.samples |
Sample applications for the Janino JavaTM compiler.
|
org.codehaus.janino.util |
Application-independent helper classes.
|
Modifier and Type | Class and Description |
---|---|
static class |
Java.MemberInterfaceDeclaration
Representation of a 'member interface declaration', i.e.
|
static class |
Java.PackageMemberInterfaceDeclaration
Representation of a 'package member interface declaration', a.k.a.
|
Modifier and Type | Method and Description |
---|---|
Java.InterfaceDeclaration |
Parser.parseInterfaceDeclarationRest(String optionalDocComment,
Java.Modifiers modifiers,
Parser.InterfaceDeclarationContext context)
InterfaceDeclarationRest :=
Identifier [ typeParameters ]
[ 'extends' ReferenceTypeList ]
InterfaceBody
|
Modifier and Type | Method and Description |
---|---|
void |
Parser.parseInterfaceBody(Java.InterfaceDeclaration interfaceDeclaration)
InterfaceBody := '{' {
';' |
ModifiersOpt (
'void' Identifier MethodDeclarationRest |
'class' ClassDeclarationRest |
'interface' InterfaceDeclarationRest |
Type Identifier (
MethodDeclarationRest |
FieldDeclarationRest
)
)
} '}'
|
Modifier and Type | Method and Description |
---|---|
void |
DeclarationCounter.traverseInterfaceDeclaration(Java.InterfaceDeclaration id) |
Modifier and Type | Method and Description |
---|---|
void |
Traverser.traverseInterfaceDeclaration(Java.InterfaceDeclaration id) |
Copyright © 2001–2016. All rights reserved.