Skip to content

Commit 422a28d

Browse files
committed
Fix broken links.
1 parent da611a5 commit 422a28d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/manual/creating-a-checker.tex

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124

125125

126126
The Base Checker
127-
(more precisely, the \refclass{framework/common/basetype}{BaseTypeChecker})
127+
(more precisely, the \refclass{common/basetype}{BaseTypeChecker})
128128
enforces the standard subtyping rules.
129129
The Subtyping Checker is a simple use of the Base Checker that supports
130130
providing type qualifiers on the command line.
@@ -951,7 +951,7 @@
951951

952952
A checker's entry point is a subclass of
953953
\refclass{framework/source}{SourceChecker}, and is usually a direct subclass
954-
of either \refclass{framework/common/basetype}{BaseTypeChecker} or
954+
of either \refclass{common/basetype}{BaseTypeChecker} or
955955
\refclass{framework/source}{AggregateChecker}.
956956
This entry
957957
point, which we call the checker class, serves two
@@ -991,7 +991,7 @@
991991
a type system named Foo, the compiler
992992
interface (checker), the visitor, and the annotated type factory are
993993
named as \<FooChecker>, \<FooVisitor>, and \<FooAnnotatedTypeFactory>.
994-
\refclass{framework/common/basetype}{BaseTypeChecker} uses the convention to
994+
\refclass{common/basetype}{BaseTypeChecker} uses the convention to
995995
reflectively construct the components. Otherwise, the checker writer
996996
must specify the component classes for construction.
997997

@@ -1101,7 +1101,7 @@
11011101
MyChecker needs to use.
11021102

11031103
Override
1104-
\<MyChecker.\refmethodterse{framework/common/basetype}{BaseTypeChecker}{getImmediateSubcheckerClasses}{()}>
1104+
\<MyChecker.\refmethodterse{framework/source}{SourceChecker}{getImmediateSubcheckerClasses}{()}>
11051105
to return a list of the checkers that MyChecker depends on. Every one of
11061106
them will be run before MyChecker is run. One of MyChecker's subcheckers
11071107
may itself be a compound checker, and multiple checkers may declare a
@@ -1112,7 +1112,7 @@
11121112
it) by querying their \refclass{framework/type}{AnnotatedTypeFactory} to
11131113
determine the types of variables. Obtain the \<AnnotatedTypeFactory> by
11141114
calling
1115-
\refmethodterse{framework/common/basetype}{BaseTypeChecker}{getTypeFactoryOfSubcheckerOrNull}{(java.lang.Class)}.
1115+
\refmethodterse{common/basetype}{BaseTypeChecker}{getTypeFactoryOfSubcheckerOrNull}{(java.lang.Class)}.
11161116

11171117
An example of a compound checker is
11181118
\refclass{checker/signedness}{SignednessChecker}
@@ -1181,12 +1181,12 @@
11811181
\subsubsectionAndLabel{Default Options}{creating-providing-command-line-options-default-options}
11821182

11831183
The default options passed to a custom checker may be customized by overriding the
1184-
\refmethodterse{framework/common/basetype}{BaseTypeChecker}{getOptions}{()} method in the
1184+
\refmethodterse{common/basetype}{BaseTypeChecker}{getOptions}{()} method in the
11851185
custom checker class.
11861186

11871187
For example, to ignore the \<introduce.eliminate> warnings raised by the
11881188
Optional Checker (Chapter~\ref{optional-checker}), override
1189-
\refmethodterse{framework/common/basetype}{BaseTypeChecker}{getOptions}{()} as follows:
1189+
\refmethodterse{common/basetype}{BaseTypeChecker}{getOptions}{()} as follows:
11901190

11911191
\begin{Verbatim}
11921192
@Override

0 commit comments

Comments
 (0)