checks if the initialisation of the class id complete. This method should be called as a form of assert, it is no way to test if there is still initialisation work to be done. Such logic must be implemented in a different way. @throws IllegalStateException if the initialisation is incomplete yet
()
| 1842 | * @throws IllegalStateException if the initialisation is incomplete yet |
| 1843 | */ |
| 1844 | protected void checkInitalised() { |
| 1845 | if (!isInitialized()) |
| 1846 | throw new IllegalStateException( |
| 1847 | "initialize must be called for meta " + |
| 1848 | "class of " + theClass + |
| 1849 | "(" + this.getClass() + ") " + |
| 1850 | "to complete initialisation process " + |
| 1851 | "before any invocation or field/property " + |
| 1852 | "access can be done"); |
| 1853 | } |
| 1854 | |
| 1855 | /** |
| 1856 | * This is a helper class which is used only by indy. It is for internal use. |
no test coverage detected