public class FortranMangler extends ShaMangler
NameMangler
for the FORTRAN 77, 90, 95 and presumably future FORTRAN standards.
The main difference between FortranMangler and ShaMangler
is the FortranMangler provides
the allowable FORTRAN character set.Constructor and Description |
---|
FortranMangler(int maxNameLen,
int maxUnmangled)
Create a name mangler for FORTRAN.
|
Modifier and Type | Method and Description |
---|---|
static void |
main(java.lang.String[] args) |
shortArrayName, shortName, shortName
public FortranMangler(int maxNameLen, int maxUnmangled) throws java.security.NoSuchAlgorithmException
maxNameLen
- the maximum allowable number of characters in a
name. Typically, this is 31 for FORTRAN 90/95,
and it is set by the FORTRAN standards
committee.maxUnmangled
- the number of characters out of
maxNameLen
that should be used
for unmangled content.java.security.NoSuchAlgorithmException
- this is thrown when the SHA message digest is unavailable. Sun's
specifications says that it should be available.