1 package org.pojomatic.internal;
2
3 /**
4 * A stub class to serve as a location for line numbers in byte-code generated by {@link PojomatorByteCodeGenerator}.
5 * If you are looking at this class, the odds are that you have encountered an stack trace including a line which
6 * is allegedly from this class. The actual code was generated by {@code PojomatorByteCodeGenerator}; you can look for
7 * occurrences of {@code visitLineNumber} in that class to determine what byte code was likely corresponding to
8 * the stack trace element.
9 */
10 public final class PojomatorStub {
11 private PojomatorStub() {}
12 }