| 37 | } |
| 38 | |
| 39 | @Override |
| 40 | public void parseLine(LoadContext context, String lstLine, URI sourceURI) throws PersistenceLayerException |
| 41 | { |
| 42 | StringTokenizer colToken = new StringTokenizer(lstLine, SystemLoader.TAB_DELIM); |
| 43 | String firstToken = colToken.nextToken().trim(); |
| 44 | Loadable loadable = getLoadable(context, firstToken.intern(), sourceURI); |
| 45 | if (loadable == null) |
| 46 | { |
| 47 | return; |
| 48 | } |
| 49 | |
| 50 | while (colToken.hasMoreTokens()) |
| 51 | { |
| 52 | processNonFirstToken(context, sourceURI, colToken.nextToken(), loadable); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | protected void processNonFirstToken(LoadContext context, URI sourceURI, |
| 57 | String token, Loadable loadable) throws PersistenceLayerException |