Uses of Class
net.percederberg.grammatica.code.CodeStyle

Packages that use CodeStyle
net.percederberg.grammatica.code   
net.percederberg.grammatica.code.csharp   
net.percederberg.grammatica.code.java   
net.percederberg.grammatica.output   
 

Uses of CodeStyle in net.percederberg.grammatica.code
 

Fields in net.percederberg.grammatica.code declared as CodeStyle
static CodeStyle CodeStyle.JAVA
          The default Java code style.
static CodeStyle CodeStyle.CSHARP
          The default C# code style.
 

Methods in net.percederberg.grammatica.code with parameters of type CodeStyle
protected  void CodeElementContainer.printContents(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints all the contained code elements to the specified output stream.
protected  void CodeElementContainer.printSeparator(java.io.PrintWriter out, CodeStyle style, CodeElement prev, CodeElement next)
          Prints the lines separating two elements.
abstract  void CodeElement.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 

Uses of CodeStyle in net.percederberg.grammatica.code.csharp
 

Methods in net.percederberg.grammatica.code.csharp with parameters of type CodeStyle
 void CSharpMethod.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void CSharpConstructor.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void CSharpEnumeration.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
protected  void CSharpEnumeration.printSeparator(java.io.PrintWriter out, CodeStyle style, CodeElement prev, CodeElement next)
          Prints the lines separating two elements.
 void CSharpClass.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the class to the specified stream.
protected  void CSharpClass.printSeparator(java.io.PrintWriter out, CodeStyle style, CodeElement prev, CodeElement next)
          Prints the lines separating two elements.
 void CSharpNamespace.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void CSharpUsing.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void CSharpComment.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the comment to the specified stream.
 void CSharpFile.writeCode(CodeStyle style)
          Writes the source code for this file.
 void CSharpFile.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the file contents to the specified output stream.
 

Uses of CodeStyle in net.percederberg.grammatica.code.java
 

Methods in net.percederberg.grammatica.code.java with parameters of type CodeStyle
 void JavaInterface.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaImport.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaPackage.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaFile.writeCode(CodeStyle style)
          Writes the source code for this file.
 void JavaFile.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the file contents to the specified output stream.
 void JavaComment.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaVariable.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaMethod.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaConstructor.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 void JavaClass.print(java.io.PrintWriter out, CodeStyle style, int indent)
          Prints the code element to the specified output stream.
 

Uses of CodeStyle in net.percederberg.grammatica.output
 

Methods in net.percederberg.grammatica.output that return CodeStyle
 CodeStyle CSharpParserGenerator.getCodeStyle()
          Returns the code style to use.
 CodeStyle JavaParserGenerator.getCodeStyle()
          Returns the Java code style to use.