Method eolIsSignificant(boolean flag)
Return type: void
Member of:
java.io.StreamTokenizer
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
inputTokenizer.eolIsSignificant(true);
2
input.eolIsSignificant(false);
3
st.eolIsSignificant(true);
4
tokenizer.eolIsSignificant(true);
5
tok.eolIsSignificant(true);
6
st.eolIsSignificant(true);
7
tokenizer.eolIsSignificant(true);
8
input.eolIsSignificant(false); // treat eol's as spaces
9
st.eolIsSignificant(false);
10
st.eolIsSignificant(false);
11
st.eolIsSignificant(true);
12
st.eolIsSignificant(true);
13
st.eolIsSignificant(true);
14
st.eolIsSignificant(false);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.