Ejemplo n.º 1
0
 @Override
 public RepeatParameters getRepeatParameters() {
   if (keyword != Keyword.Repeat) {
     throw new IllegalStateException(
         "Cannot retrieve RepeatParameters from a " + keyword + " part!");
   }
   if (repeatParameters == null) {
     repeatParameters = parserConf.repeatParametersParser().parse(rawContent);
   }
   return repeatParameters;
 }