2
0
mirror of synced 2025-02-23 23:08:14 +00:00
mobile/bind/testdata/keywords.go
Péter Szilágyi 2f75be449f bind: use lowercase method names for Java binds
There was a discussion a year ago about making methods and types
lowercase in ObjC (https://github.com/golang/go/issues/12889),
which was done (https://go-review.googlesource.com/#/c/15780/),
alas the suggested Java lower casing was never addressed.

This CL converts all generated Java methods to lower case.

Change-Id: Ia2f28519bc59362877881636109ddfc651b24960
Reviewed-on: https://go-review.googlesource.com/28494
Reviewed-by: Elias Naur <elias.naur@gmail.com>
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2016-09-07 12:52:06 +00:00

62 lines
726 B
Go

// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package keywords
type KeywordCaller interface {
Abstract()
Assert()
Boolean()
Break()
Byte()
Case()
Catch()
Char()
Class()
Const()
Continue()
Default()
Do()
Double()
Else()
Enum()
Extends()
Final()
Finally()
Float()
For()
Goto()
If()
Implements()
Import()
Instanceof()
Int()
Interface()
Long()
Native()
New()
Package()
Private()
Protected()
Public()
Return()
Short()
Static()
Strictfp()
Super()
Switch()
Synchronized()
This()
Throw()
Throws()
Transient()
Try()
Void()
Volatile()
While()
False()
Null()
True()
}