Beispiel #1
0
 /**
  * set the file header
  *
  * @param aToken the file header
  */
 public void setHeader(Token aToken) {
   fHeader = new Block(this, Block.HEADER, aToken.getLine(), aToken.getColumn());
 }
Beispiel #2
0
 /**
  * set the file options
  *
  * @param aToken the file options
  */
 public void setOptions(Token aToken) {
   fOptions = new Block(this, Block.OPTIONS, aToken.getLine(), aToken.getColumn());
 }