메소드 | 설명 | |
---|---|---|
Commit ( char text, int off, int len ) : void |
This is used to commit the provided text in to the style that is required. Committing the text to the buffer assembles the tokens resulting in a complete token.
|
|
Element ( String source, bool parse ) : System |
Constructor for the
|
|
Parse ( char text, int off, int len ) : void |
This is used to parse the provided text in to the style that is required. Manipulation of the text before committing it ensures that the text adheres to the required style.
|
public Commit ( char text, int off, int len ) : void | ||
text | char | /// This is the text buffer to acquire the token from. /// |
off | int | /// This is the offset in the buffer token starts at. /// |
len | int | /// This is the length of the token to be committed. /// |
리턴 | void |
public Element ( String source, bool parse ) : System | ||
source | String | /// This is the original string to be parsed. /// |
parse | bool | |
리턴 | System |
public Parse ( char text, int off, int len ) : void | ||
text | char | /// This is the text buffer to acquire the token from. /// |
off | int | /// This is the offset in the buffer token starts at. /// |
len | int | /// This is the length of the token to be parsed. /// |
리턴 | void |