summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/gluegen/DebugEmitter.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-03 16:06:47 +0200
committerSven Gothel <[email protected]>2014-07-03 16:06:47 +0200
commitdf9ff7f340a5ab4e07efc613f5f264eeae63d4c7 (patch)
tree239ae276b82024b140428e6c0fe5d739fdd686a4 /src/java/com/jogamp/gluegen/DebugEmitter.java
parenteb47aaba63e3b1bf55f274a0f338f1010a017ae4 (diff)
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74)
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines
Diffstat (limited to 'src/java/com/jogamp/gluegen/DebugEmitter.java')
-rw-r--r--src/java/com/jogamp/gluegen/DebugEmitter.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/java/com/jogamp/gluegen/DebugEmitter.java b/src/java/com/jogamp/gluegen/DebugEmitter.java
index 8773f1b..6381c8c 100644
--- a/src/java/com/jogamp/gluegen/DebugEmitter.java
+++ b/src/java/com/jogamp/gluegen/DebugEmitter.java
@@ -48,10 +48,10 @@ import com.jogamp.gluegen.cgram.types.*;
public class DebugEmitter implements GlueEmitter {
@Override
- public void readConfigurationFile(String filename) {}
+ public void readConfigurationFile(final String filename) {}
@Override
- public void beginEmission(GlueEmitterControls controls) {
+ public void beginEmission(final GlueEmitterControls controls) {
System.out.println("----- BEGIN EMISSION OF GLUE CODE -----");
}
@@ -64,9 +64,9 @@ public class DebugEmitter implements GlueEmitter {
public void beginDefines() {}
@Override
- public void emitDefine(ConstantDefinition def, String optionalComment) {
- String name = def.getName();
- String value = def.getValue();
+ public void emitDefine(final ConstantDefinition def, final String optionalComment) {
+ final String name = def.getName();
+ final String value = def.getValue();
System.out.println("#define " + name + " " + value +
(optionalComment != null ? ("// " + optionalComment) : ""));
}
@@ -74,24 +74,24 @@ public class DebugEmitter implements GlueEmitter {
public void endDefines() {}
@Override
- public void beginFunctions(TypeDictionary typedefDictionary,
- TypeDictionary structDictionary,
- Map<Type, Type> canonMap) {
- Set<String> keys = typedefDictionary.keySet();
- for (String key: keys) {
- Type value = typedefDictionary.get(key);
+ public void beginFunctions(final TypeDictionary typedefDictionary,
+ final TypeDictionary structDictionary,
+ final Map<Type, Type> canonMap) {
+ final Set<String> keys = typedefDictionary.keySet();
+ for (final String key: keys) {
+ final Type value = typedefDictionary.get(key);
System.out.println("typedef " + value + " " + key + ";");
}
}
@Override
- public Iterator<FunctionSymbol> emitFunctions(List<FunctionSymbol> originalCFunctions) throws Exception {
- for (FunctionSymbol sym : originalCFunctions) {
+ public Iterator<FunctionSymbol> emitFunctions(final List<FunctionSymbol> originalCFunctions) throws Exception {
+ for (final FunctionSymbol sym : originalCFunctions) {
emitSingleFunction(sym);
}
return originalCFunctions.iterator();
}
- public void emitSingleFunction(FunctionSymbol sym) {
+ public void emitSingleFunction(final FunctionSymbol sym) {
System.out.println(sym);
System.out.println(" -> " + sym.toString());
}
@@ -101,16 +101,16 @@ public class DebugEmitter implements GlueEmitter {
@Override
public void beginStructLayout() throws Exception {}
@Override
- public void layoutStruct(CompoundType t) throws Exception {}
+ public void layoutStruct(final CompoundType t) throws Exception {}
@Override
public void endStructLayout() throws Exception {}
@Override
- public void beginStructs(TypeDictionary typedefDictionary, TypeDictionary structDictionary, Map<Type, Type> canonMap) {
+ public void beginStructs(final TypeDictionary typedefDictionary, final TypeDictionary structDictionary, final Map<Type, Type> canonMap) {
}
@Override
- public void emitStruct(CompoundType t, String alternateName) {
+ public void emitStruct(final CompoundType t, final String alternateName) {
String name = t.getName();
if (name == null && alternateName != null) {
name = alternateName;