(LoadContext context, String firstToken, URI sourceURI)
| 60 | } |
| 61 | |
| 62 | protected T getLoadable(LoadContext context, String firstToken, URI sourceURI) |
| 63 | { |
| 64 | String name = processFirstToken(context, firstToken); |
| 65 | if (name == null) |
| 66 | { |
| 67 | return null; |
| 68 | } |
| 69 | T loadable = context.getReferenceContext().constructCDOMObject(loadClass, name.intern()); |
| 70 | loadable.setSourceURI(sourceURI); |
| 71 | return loadable; |
| 72 | } |
| 73 | |
| 74 | protected String processFirstToken(LoadContext context, String token) |
| 75 | { |
no test coverage detected