fix formatting

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@936 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-04-09 16:40:00 +00:00
parent 7cd7750aef
commit 047f508a59
2 changed files with 10 additions and 7 deletions

View File

@ -27,9 +27,7 @@ import com.ibm.wala.util.debug.Assertions;
* Under construction.
*
* FormalTypeParameter:
* Identifier
* ClassBound
* InterfaceBound*
* Identifier ClassBound InterfaceBound*
*
* ClassBound:
* : FieldTypeSignature?

View File

@ -19,12 +19,17 @@ import com.ibm.wala.util.debug.Assertions;
/**
* UNDER CONSTRUCTION.
*
* <verbatim> TypeSignature: FieldTypeSignature BaseType (code for a primitive)
* <verbatim> TypeSignature:
* FieldTypeSignature
* BaseType (code for a primitive)
*
* FieldTypeSignature: ClassTypeSignature ArrayTypeSignature
* TypeVariableSignature
* FieldTypeSignature:
* ClassTypeSignature
* ArrayTypeSignature
* TypeVariableSignature
*
* TypeVariableSignature: T identifier ;
* TypeVariableSignature:
* T identifier ;
*
* </verbatim>
*